35 lines
741 B
Plaintext
35 lines
741 B
Plaintext
# version Trytond server example 6.0
|
|
TRYTOND_VERSION=7.0
|
|
TRYTON_ADMIN_PASS=admin
|
|
TRYTON_ADMIN_EMAIL=admin@admin.com
|
|
|
|
# TRYTOND operation mode
|
|
TRYTON_PORT=8000
|
|
DEVELOP=True
|
|
WORKER=False
|
|
|
|
# if the module repository is private
|
|
GITEA_USER=USER
|
|
GITEA_PASSWORD=PASSWORD
|
|
GITEA_ACCESS_TOKEN=TOKEN
|
|
GITEA_DOMAIN=git.domain.org
|
|
|
|
# Choise a valid file seed from into folder ./sets
|
|
SET=./sets/modules.txt
|
|
|
|
# Database configuration
|
|
DB_PASSWORD=SUp3r-pass*DB
|
|
POSTGRES_DB=tryton
|
|
DB_HOSTNAME=db
|
|
POSTGRES_PASSWORD=SUp3r-pass*DB
|
|
|
|
#SMTP This value is True or False
|
|
SMTP=False
|
|
SMTP_TYPE=smtps+ssl
|
|
SMTP_USER=email@example.com
|
|
SMTP_PASSWORD=PASSWORD
|
|
SMTP_DOMAIN=mail.example.org
|
|
SMTP_PORT=465
|
|
SMTP_FROM="NAME_FROM <email@example.com>"
|
|
SMTP_EMAIL=email@example.org
|