Squint Take a good look at all the ways you can lose money Getting Started Copy .env-example to .env cp .env-example .env Start up Docker: docker-compose up View http://localhost:1999 Development Copy .env-example to .env cp .env-example .env Use VSCode and VSCode Dev Containers Start it up in a Dev Container cd into 'app' (from /workspaces): cd app Create the admin (see app/home/management/commands/createsu.py): python manage.py createsu (optional) make any db migration changes (if you're changing models.py anywhere; for example, transactions): python manage.py makemigrations transactions python manage.py migrate Start the dev server: python manage.py runserver 0.0.0.0:8000 (probably) navigate to http://localhost:1999 (see .env file for the default port) Tech Docker: https://www.docker.com/ Django: https://www.djangoproject.com/ VS Code: https://code.visualstudio.com/ Playwright: https://playwright.dev/ Express: https://expressjs.com/ TBD