A multiplayer geography game using Websockets.
Visit https://posio.abrenaut.com/ for a live demo.
docker run --rm -p 5000:5000 -e FLASK_APP=/app/posio/game_master.py -e POSIO_SETTINGS=/app/posio/config.py --name posio l4rm4nd/posio:latest
The web application will be available at http://127.0.0.1:5000.
# download compose file and adjust to your needs
wget https://raw.githubusercontent.com/l4rm4nd/posio/master/docker-compose.yml
# spawn the stack
docker compose up -d
The web application will be available at http://127.0.0.1:5000.
- Create a new virtual environment and activate it
python -m venv .venv
source .venv/bin/activate
- Install dependencies
pip install -r requirements.txt
- Run the application
flask --app posio run --host 127.0.0.1
- Open the following URL in your browser: http://127.0.0.1:5000
This project is under MIT license.