Setup your db credentials in piccolo_conf.py
DB = PostgresEngine(
config={
"database": "your db name",
"user": "your db username",
"password": "your db password",
"host": "localhost",
"port": 5432,
}
)
pip install -r requirements.txt
piccolo migrations forwards session_auth
piccolo migrations forwards user
piccolo migrations new home --auto
piccolo migrations forwards home
piccolo user create
python main.py