doc: add readme

This commit is contained in:
Matthew Ryan Dillon 2022-01-10 15:15:46 -07:00
parent 9fbe9fbede
commit 4a9e126e04

13
README.md Normal file
View file

@ -0,0 +1,13 @@
# planner
## development quickstart
```bash
podman run --name planner-db -e POSTGRES_PASSWORD=password -p 5432:5432
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
```