change readme
This commit is contained in:
parent
da344b515b
commit
e9410b0ca6
|
|
@ -5,6 +5,8 @@
|
||||||
- Adds numbers to the list of tokens issued.
|
- Adds numbers to the list of tokens issued.
|
||||||
- Selects numbers from the list to be called.
|
- Selects numbers from the list to be called.
|
||||||
- Removes the called number from the list or moves it back to the queue.
|
- Removes the called number from the list or moves it back to the queue.
|
||||||
|
- People check whether their number has been called on queue.hswro.org
|
||||||
|
- Additional page queue.hswro.org/infokiosk displays video and information bar.
|
||||||
|
|
||||||
## Common tasks
|
## Common tasks
|
||||||
|
|
||||||
|
|
@ -14,10 +16,11 @@ In the repo directory:
|
||||||
|
|
||||||
```
|
```
|
||||||
docker build -t queue-app:latest .
|
docker build -t queue-app:latest .
|
||||||
docker run -p="5000:5000" --volume="$PWD:/data:" -it queue-app:latest
|
docker run -it --rm -p 5000:5000 -v "$(pwd)":/data -e INFO_TEXT='example info text' queue-app:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
Preview should be available on:
|
Preview should be available on:
|
||||||
`http://localhost:5000` - end user access
|
`http://localhost:5000` - end user access
|
||||||
`http://localhost:5000/admin` - operator access
|
`http://localhost:5000/admin` - operator access
|
||||||
|
`http://localhost:5000/infokiosk` - information page
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue