example.env 558 B

1234567891011121314151617181920
  1. # This file is an example of an .env file with all the values needed by the application.
  2. # Copy and rename this file, set the values to the ones needed by your application, and run the
  3. # server with 'node --env-file=<your_file>.env app.js'.
  4. # Never add the modified file to version control.
  5. # Database connection parameters
  6. DB_HOST = "localhost"
  7. DB_PORT = 3306
  8. DB_USER = "user"
  9. DB_PASS = "password"
  10. DB_NAME = "name"
  11. DB_TYPE = "mysql"
  12. # Server settings
  13. SRV_MODE = "EXAMPLE"
  14. SRV_PORT = 8080
  15. # Encryption secret
  16. SECRET = "CHANGEME"
  17. TOKEN_ISSUER = "CHANGEME"