Prepare:
cd src/static
yarn install
Run:
yarn dev
Duplicate local.example.env
and raname to local.env
. Comment-out DATABASE_URL if you want to
use default SQLite.
Prepare:
pip install -r requirements.txt
flake8 --install-hook git
Run:
python manage.py migrate
python src/manage.py runserver
Note: if you want to use Postgres, run docker-compose up db
.
TBD