Take a good look at all the ways you can lose money
- Copy
.env-example
to .env
- Start up Docker:
- View http://localhost:1999
- Copy
.env-example
to .env
- Use VSCode and VSCode Dev Containers
- Start it up in a Dev Container
- cd into 'app' (from
/workspaces
):
- 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)