mirror of
https://github.com/YunoHost-Apps/plume_ynh.git
synced 2024-09-03 20:15:54 +02:00
25 lines
No EOL
745 B
Bash
Executable file
25 lines
No EOL
745 B
Bash
Executable file
# The address of the database
|
|
# (replace USER, PASSWORD, PORT and DATABASE_NAME with your values)
|
|
#
|
|
# If you are using SQlite, use the path of the database file (`plume.db` for instance)
|
|
DATABASE_URL=postgres://__DB_NAME__:__DB_PWD__@localhost:5432/__DB_NAME__
|
|
|
|
# For PostgreSQL: migrations/postgres
|
|
# For SQlite: migrations/sqlite
|
|
MIGRATION_DIRECTORY=migrations/postgres
|
|
|
|
# The domain on which your instance will be available
|
|
BASE_URL=__DOMAIN__
|
|
|
|
ROCKET_PORT=__PORT__
|
|
ROCKET_ADDRESS=127.0.0.1
|
|
|
|
# Secret key used for private cookies and CSRF protection
|
|
# You can generate one with `openssl rand -base64 32`
|
|
ROCKET_SECRET_KEY=__SECRET_KEY__
|
|
|
|
# Mail settings
|
|
MAIL_SERVER=localhost
|
|
#MAIL_USER=example
|
|
#MAIL_PASSWORD=123456
|
|
MAIL_HELO_NAME=__DOMAIN__ |