Files
muzick/backend/scripts/setup-db.sh
T

7 lines
131 B
Bash
Executable File

#!/bin/bash
# Initialize the database schema
psql "$DATABASE_URL" -f src/db/schema.sql
echo "Database initialized successfully."