initial commit

This commit is contained in:
2023-06-04 17:46:19 +02:00
commit 4b90f7c8d5
51 changed files with 9952 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# Please refer to README
############
# Database #
############
DATABASE_URL=postgres://postgres:secret@localhost:5432/template
DATABASE_USERNAME=postgres
DATABASE_PASSWORD=secret
DATABASE_HOST=localhost
DATABASE_NAME=template
DATABASE_PORT=5432
# SSL_MODE possible options: disable | allow | prefer | require | verify-ca | verify-full
# if left empty, default value is prefer
DATABASE_SSL_MODE=
###############
# Application #
###############
APPLICATION_PORT=8000
# if commented out or left empty, telemetry will default to stdout
APPLICATION_TELEMETRY_PATH=
###########
# General #
###########
# MIGRATION possible options: auto (when application starts up) | manual (has to be run manually)
# if commented out or left empty, environment will default to manual
MIGRATION=auto