mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-20 01:44:15 +00:00
13 lines
161 B
Bash
Executable File
13 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build the RSCDS database
|
|
#
|
|
|
|
DBNAME="${1:-rscds}"
|
|
|
|
createdb -E UTF8 "${DBNAME}"
|
|
|
|
psql -f rscds.sql "${DBNAME}"
|
|
|
|
psql -f sample-data.sql "${DBNAME}"
|