Skip to content

Simple MVP-quality games to play in your browser

Notifications You must be signed in to change notification settings

taylor-edwards/arcade

Repository files navigation

The Arcade

The Arcade is a small collection of games you can play in your browser. The selection currently includes:

Run locally

You can run the Flask app directly for local development using virtualenv:

python3 -m venv ./.venv
source ./.venv/bin/activate
pip install -r requirements.txt
FLASK_ENV=development python3 app.py
# access client at http://localhost:5000/

How to build

This app has a small Dockerfile, which means we can build and run an image like so:

docker build . -t arcade
docker run -p 8084:5000 -v logs:/app/logs/:Z arcade
# access client at http://localhost:8084/

Or all at once with Docker Compose:

docker-compose up --build
# access client at http://localhost:8084/