mirror of
https://github.com/simple-login/app.git
synced 2025-09-04 13:44:23 +08:00
7 lines
212 B
Bash
Executable file
7 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export DB_URI=postgresql://myuser:mypassword@localhost:15432/simplelogin
|
|
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
|
|
|
rye run alembic upgrade head
|
|
rye run flask dummy-data
|