24 lines
624 B
Markdown
24 lines
624 B
Markdown
# queue.hswro.org website - a simple queue management system:
|
|
|
|
- People receive physical tokens with numbers on them.
|
|
- Operator:
|
|
- Adds numbers to the list of tokens issued.
|
|
- Selects numbers from the list to be called.
|
|
- Removes the called number from the list or moves it back to the queue.
|
|
|
|
## Common tasks
|
|
|
|
### Testing the website locally
|
|
|
|
In the repo directory:
|
|
|
|
```
|
|
docker build -t queue-app:latest .
|
|
docker run -p="5000:5000" --volume="$PWD:/data:" -it queue-app:latest
|
|
```
|
|
|
|
Preview should be available on:
|
|
`http://localhost:5000` - end user access
|
|
`http://localhost:5000/admin` - operator access
|
|
|