mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
8 lines
219 B
Bash
8 lines
219 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export DB_URI=postgresql://myuser:mypassword@localhost:15432/simplelogin
|
||
|
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
||
|
|
||
|
poetry run alembic upgrade head
|
||
|
poetry run flask dummy-data
|