mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-02 13:14:29 -04:00
17 lines
539 B
Plaintext
17 lines
539 B
Plaintext
# vi: ft=sh
|
|
# shellcheck disable=SC2034
|
|
|
|
# http route prefix (will listen to $KEIBI_PREFIX/users for example)
|
|
KEIBI_PREFIX=""
|
|
|
|
# Database things
|
|
POSTGRES_USER=kyoo
|
|
POSTGRES_PASSWORD=password
|
|
POSTGRES_DB=kyoo
|
|
POSTGRES_SERVER=postgres
|
|
POSTGRES_PORT=5432
|
|
# Default is keibi, you can specify "disabled" to use the default search_path of the user.
|
|
# If this is not "disabled", the schema will be created (if it does not exists) and
|
|
# the search_path of the user will be ignored (only the schema specified will be used).
|
|
POSTGRES_SCHEMA=keibi
|