mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 15:55:54 +01:00
26 lines
405 B
Bash
26 lines
405 B
Bash
############
|
|
# ENV FILE #
|
|
############
|
|
|
|
mode=dev
|
|
|
|
#DB Name
|
|
dbname=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"
|
|
|