A simple webapp app to show and search saved quotes, like the ones from IRC
- Authentication needed to view quotes
- REST API with tokens for easy bot integration
- Mobile first design, dark mode
- Web Manifest for a snazzy install to phone home screen
- copy
.env-example
to.env
and change settings needed for deployment - copy
app/.env-example
toapp/.env
and change settings needed for the app docker compose build
docker compose run --rm app python3 manage.py migrate
to initialize the dbdocker compose run --rm app python3 manage.py createsuperuser
to create the superuserdocker compose run --rm app python3 manage.py collectstatic --no-input
to get static files in the correct places- uncomment preferred command from
docker-compose.yml
docker compose up -d
to deploy to localhost
Includes some django testing
docker compose run --rm app bash
python3 manage.py test