# This file is an example of an .env file with all the values needed by the application. # Copy and rename this file, set the values to the ones needed by your application, and run the # server with 'node --env-file=.env app.js'. # Never add the modified file to version control. # Database connection parameters DB_HOST = "localhost" DB_PORT = 3306 DB_USER = "testuser" DB_PASS = "testpassword" DB_NAME = "testname" DB_TYPE = "mysql" # Server settings SRV_MODE = "TEST" SRV_PORT = 8087 # Encryption secret SECRET = "TEST" TOKEN_ISSUER = "TEST"