mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-16 08:15:53 +01:00
26 lines
409 B
Bash
26 lines
409 B
Bash
|
############
|
||
|
# ENV FILE #
|
||
|
############
|
||
|
|
||
|
mode=dev
|
||
|
|
||
|
#DB Name
|
||
|
dbhostname=my_product_db_dev
|
||
|
|
||
|
#The DB username
|
||
|
dbuser=my_user
|
||
|
|
||
|
#The DB password (in this example is read from an EnvVariable)
|
||
|
dbpassword="XYZ${USERNAME}!$"
|
||
|
|
||
|
#DB Hostname
|
||
|
dbhostname="127.0.0.1"
|
||
|
|
||
|
#user preferences
|
||
|
user_preferences_path=${APPDATA}
|
||
|
|
||
|
email_template="This is a ${mode} email template
|
||
|
second template email line
|
||
|
third template email line"
|
||
|
|