mirror of
https://github.com/fergalmoran/kidarr-server.git
synced 2025-12-22 09:17:51 +00:00
20 lines
331 B
Bash
Executable File
20 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
export PGUSER=postgres
|
|
export PGPASSWORD=hackme
|
|
export PGHOST=localhost
|
|
|
|
echo Removing migrations
|
|
rm -rf drizzle
|
|
echo "Dropping db"
|
|
|
|
echo "Dropping production db"
|
|
dropdb -f --if-exists kidarr
|
|
echo "Creating production db"
|
|
createdb kidarr
|
|
|
|
bun db:generate
|
|
bun db:migrate
|
|
|
|
# bun run src/db/migrate.ts
|
|
bun db:seed
|