mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
22 lines
350 B
Plaintext
22 lines
350 B
Plaintext
############
|
|
# ENV FILE #
|
|
############
|
|
|
|
mode=prod
|
|
|
|
#DB Name
|
|
dbname=my_product_db
|
|
|
|
#The DB username
|
|
dbuser=${USERNAME}
|
|
|
|
#The DB password
|
|
#in this example is read from an EnvVariable
|
|
dbpassword=${dbuser}!$%
|
|
|
|
#DB Hostname
|
|
dbhostname="192.168.3.10"
|
|
|
|
#user preferences
|
|
#read from env var and internal defined var
|
|
user_preferences_path=${APPDATA}_${mode} |