| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # Rename me to .env then fill me with runtime configuration and credentials
- # Just don't try to check me into your repo :)
- # Confused? See https://github.com/motdotla/dotenv
-
- # API host:port
- API_HOST=localhost
- API_PORT=3001
- APP_SECRET=somesecret
- APP_SESSION_SALT=a;sldkja;ldksfja;sldkj
-
- USE_LOCAL_DB=true
- DB_TYPE=mysql
-
- # Extra pepper for auth encryption
- PEPPER=kosho
- APP_SECRET=mysecret
- APP_SESSION_SALT=somerandomstring
-
-
- # Config for local test dB
- DB_HOST=localhost
- DB_PORT=3307
- DB_NAME=test
-
- DB_USER=root
- DB_ROOT_PASSWORD=root
-
- # Config for remote planet scale production dB
- PSCALE_DB_HOST=planet-scale-db
- PSCALE_DB_PORT=3306
- PSCALE_DB_NAME=pscale-db
- PSCALE_DB_BRANCH=main
-
- PSCALE_DB_USER=myuserpleasechange
- PSCALE_DB_PASSWORD=pscale_pw_abc123efg456hij789
-
- # Brevo Transactional Email API key and other related params
- BREVO_KEY=brevo_api_key
- # Change this to production server
- # BREVO_LINK=localhost:1234
- BREVO_LINK=link_back_to_siimee
- # Change this if multiple templates made via Brevo
- # BREVO_TEMPLATE_ID=1
- BREVO_TEMPLATE_ID=id_of_brevo_template
|