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-exampleto.envand change settings needed for deployment - copy
app/.env-exampletoapp/.envand change settings needed for the app docker compose builddocker compose run --rm app python3 manage.py migrateto initialize the dbdocker compose run --rm app python3 manage.py createsuperuserto create the superuserdocker compose run --rm app python3 manage.py collectstatic --no-inputto get static files in the correct places- uncomment preferred command from
docker-compose.yml docker compose up -dto deploy to localhost
Includes some django testing
docker compose run --rm app bashpython3 manage.py test