mirror of
https://github.com/simple-login/app.git
synced 2025-10-16 18:28:26 +08:00
* feat: use rye as project manager * chore: change poetry to rye for scripts * ci: avoid duplicate executions * Remove unused check and rename check * removed unused parallel tasks * Remove strategy altogether --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
6 lines
180 B
Bash
Executable file
6 lines
180 B
Bash
Executable file
#!/bin/sh
|
|
|
|
export DB_URI=postgresql://myuser:mypassword@localhost:15432/test
|
|
echo 'drop schema public cascade; create schema public;' | psql $DB_URI
|
|
|
|
rye run alembic upgrade head
|