]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blame - cmd/ansible/conf.toml.j2
Allow to configure the type of Postgres connection (tcp or unix).
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / cmd / ansible / conf.toml.j2
CommitLineData
7a9e5112 1log_level="info"
2mode="production"
3log_out="/var/cryptoportfolio-app/app.log"
4port="8080"
5
6[db]
7user="{{ postgres_user }}"
8password="{{ postgres_password }}"
9database="{{ postgres_database }}"
69db77ca 10type="{{ postgres_connection_type }}" # tcp or unix
7a9e5112 11address="localhost:5432"
12
17b68539 13[redis]
69db77ca 14type="{{ redis_adress_type }}" # tcp or unix
17b68539 15address="localhost:6379"
16database=0
17
7a9e5112 18[api]
19domain="{{ app_domain }}"
20jwt_secret="{{ jwt_secret }}"
35e1f63a 21password_reset_secret="{{ password_reset_secret }}"
85545aba 22free_sms_user="20996747"
23free_sms_pass="bM2ZPETB4zzWg3"
7a9e5112 24
25[app]
26public_dir="/var/cryptoportfolio-app/static"