| 12345678910111213141516171819202122232425262728293031323334 |
- # 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
-
- USE_LOCAL_DB=true
- DB_TYPE=mysql
-
-
- # Extra pepper for auth encryption
- PEPPER=kosho
- APP_SECRET=mysecret
-
-
- # 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
|