Projektmanagement-Game/README.md

31 lines
353 B
Markdown
Raw Normal View History

2021-05-20 10:25:08 +00:00
# Projektmanagement Game
2021-05-20 17:58:24 +00:00
2021-06-07 20:07:02 +00:00
## Docker
### Build
2021-05-20 17:58:24 +00:00
```
2021-05-26 14:59:19 +00:00
docker build Projektmanagement-Game/ -t pm-game
2021-05-20 17:58:24 +00:00
```
2021-06-07 20:07:02 +00:00
### Deploy
2021-05-26 14:59:19 +00:00
```
docker run -d -p 80:5000 pm-game
2021-06-07 20:07:02 +00:00
```
### Check if it works
Open `http://127.0.0.1` in your Browser
## Without docker
### Run
```
node Webservice/server.js
```
### Check if it works
Open `http://127.0.0.1:5000` in your Browser