Mount environment variables from .env file.
Reads the environment variable file specified in config and sets variables in process.env.
Prevents multiple loading with a global flag.
Example
// Environment variables configuration in config/config.js exportdefault { env_path:'.env'// Path to environment file };
Mount environment variables from .env file. Reads the environment variable file specified in config and sets variables in process.env. Prevents multiple loading with a global flag.
Example
Example