For v1.0 and above please check
https://github.com/quasarframework/app-extension-dotenv
And if you are working with a CI env
https://github.com/marcorivm/quasar-app-extension-system-environment-variables
Quasar Dotenv is a wrapper around Dotenv which enables reading variables from a .env file and loading them into the Quasar runtime via process.env. This according to the Quasar Guidelines
# with npm
npm install quasar-dotenv
# or with Yarn
yarn add quasar-dotenvAt the beggining of your quasar.conf.js file, require and configure dotenv.
const env = require('quasar-dotenv').config()Include the env variable in the build block of quasar.conf.js
build: {
// ...
env: env,
// ...
}Create a .env and a .env.example files in the root directory of your project. Add
environment-specific variables on new lines in the form of NAME=VALUE.
For example:
API_URL=localhost
API_CLIENT_ID=1
API_CLIENT_SECRET=123456789ULTRASECRET123456789That's it.
process.env now has the keys and values you defined in your .env file.
If you make any changes to your .env file or system variables you will need to run quasar dev or quasar build see the updated values.
In some scenarios like when working in a CI enviroment where we might want to load enviroment variables from the system variables instead of an .env file. This plugin will handle loading system variables as long as they are present in the .env.example file.
The
.env.exampleacts as a dictionary allowing the plugin to choose which variables to load from the system variables