App Configs
The Record Books project relies on configuration files to manage the various settings and options that are used throughout the application.
Environment Variables
The Record Books project uses environment variables to manage the configuration of the application. These environment variables are loaded into the application at runtime and are used to configure the application. A .env.local
file is used to store these environment variables. This file is not checked into the repository and is used to store sensitive information such as API keys and other secrets. This file should be created in the root of the project and should look like the following:
AUTH0_SECRET=''
AUTH0_BASE_URL=''
AUTH0_ISSUER_BASE_URL=''
AUTH0_CLIENT_ID=''
AUTH0_CLIENT_SECRET=''
MONGODB_URI=''