7 lines
131 B
Bash
Executable File
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."
|