mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-04-23 14:50:14 +00:00
13 lines
164 B
Bash
Executable File
13 lines
164 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Build the CalDAV database
|
|
#
|
|
|
|
DBNAME="${1:-caldav}"
|
|
|
|
createdb -E UTF8 "${DBNAME}"
|
|
|
|
psql -f caldav.sql "${DBNAME}"
|
|
|
|
psql -f sample-data.sql "${DBNAME}"
|