mozilla / mozaik-amo-dashboard

Dashboard showing repo info for amo related repositories.
1 stars 4 forks source link

No Maintenance Intended

Mozaïk amo dashboard

AMO Dashboard based on mozaik-demo.

Running locally

Adding environment variables

Some extensions requires additional settings, you can add it via environment variables to avoid modifying config files, you can use export:

export GITHUB_API_TOKEN="xxxxx"
node server.js config.yml

or prepend it to the command:

GITHUB_API_TOKEN="xxxxx" node server.js config.yml

or create an .env file if you want a more permanent solution:

# .env
GITHUB_API_TOKEN=xxxxx
node server.js config.yml

Note that .env file is in .gitignore to prevent pushing sensitive data to GitHub.