ecoPervious / nucleus

Modern publishing for mozilla.org

Home Page:https://wiki.mozilla.org/Websites/Mozilla.org/Publishing

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nucleus

Build Status

Coverage status

Run the tests

There's a sample test in nucleus/base/tests.py for your convenience, that you can run using the following command:

python manage.py test

If you want to run the full suite, with flake8 and coverage, you may use tox. This will run the tests the same way they are run by travis):

pip install tox
tox

The .travis.yml file will also run coveralls by default.

If you want to benefit from Travis and Coveralls, you will need to activate both of them in your project.

Oh, and you might want to change the "Build Status" and "Coverage Status" links at the top of this file to point to your own travis and coveralls accounts.

Docker for development

  1. Make sure you have docker and docker-compose
  2. docker-compose up

Docker for deploying to production

  1. Add your project in Docker Registry as Automated Build

  2. Prepare a 'env' file with all the variables needed by dev, stage or production.

  3. Run the image:

    docker run --env-file env -p 80:8000 mozilla/nucleus

Heroku

  1. heroku create
  2. heroku config:set DEBUG=False ALLOWED_HOSTS=.herokuapp.com, SECRET_KEY=something_secret DATABASE_URL gets populated by heroku once you setup a database.
  3. git push heroku master

NewRelic Monitoring

A newrelic.ini file is already included. To enable NewRelic monitoring add two enviroment variables:

  • NEW_RELIC_LICENSE_KEY
  • NEW_RELIC_APP_NAME

See the full list of supported environment variables.

About

Modern publishing for mozilla.org

https://wiki.mozilla.org/Websites/Mozilla.org/Publishing

License:Mozilla Public License 2.0


Languages

Language:Python 49.4%Language:Shell 29.4%Language:HTML 11.6%Language:Groovy 9.6%