From 4a9e126e043a32ad0afb1ead90da41261932bb02 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Mon, 10 Jan 2022 15:15:46 -0700 Subject: [PATCH] doc: add readme --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7484565 --- /dev/null +++ b/README.md @@ -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 +```