Dashboard showing repo info for amo related repositories.
Перейти к файлу
Stuart Colville f65d4631c1
Update to show it's deprecated.
2019-04-12 15:48:35 +01:00
config Setup heroku deployment 2017-05-04 10:59:11 +01:00
public Add favicon and initial config 2017-03-29 12:50:48 +01:00
src chore(demo): update to latest alpha versions 2016-12-24 11:32:31 +09:00
.env.sample chore(demo): update to latest alpha versions 2016-12-24 11:32:31 +09:00
.gitignore chore(demo): update to latest alpha versions 2016-12-24 11:32:31 +09:00
.travis.yml feat(mozaik-2): init mozaik 2 migration 2016-08-26 01:21:39 +09:00
CODE_OF_CONDUCT.md Add Mozilla Code of Conduct file 2019-03-30 00:09:39 -07:00
ISSUE_TEMPLATE.md Create ISSUE_TEMPLATE.md 2016-03-20 13:39:20 +09:00
Procfile Setup heroku deployment 2017-05-04 10:59:11 +01:00
README.md Update to show it's deprecated. 2019-04-12 15:48:35 +01:00
config-heroku.yml Add links to counts (fixes #1) 2017-05-05 13:51:16 +01:00
config.yml Add links to counts (fixes #1) 2017-05-05 13:51:16 +01:00
package.json Add links to counts (fixes #1) 2017-05-05 13:51:16 +01:00
server.js Setup heroku deployment 2017-05-04 10:59:11 +01:00
yarn.lock Setup heroku deployment 2017-05-04 10:59:11 +01:00

README.md

No Maintenance Intended

Mozaïk amo dashboard

AMO Dashboard based on mozaik-demo.

Running locally

  • yarn install
  • node server.js

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.