Skip to content

DJELECTROBPM/badges.mozilla.org

 
 

Repository files navigation

badges.mozilla.org

Build Status Requirements Status

badges.mozilla.org is a service for awarding badges to Mozillians!

Bugs and Ideas

Feel free to file them as issues on the badges.mozilla.org project!

Docker for development

  1. Make sure you have docker and fig
  2. fig up

Development outside of Docker

Here's how I get it running on my MacBook:

git clone 
virtualenv --no-site-packages virtualenv
. ./venv/bin/activate
pip install -r requirements/dev.txt
# Set up a mysql database
# Edit badgus/settings/local.py
# change db credentials and add HMAC_KEYS
./manage.py syncdb
./manage.py migrate
./manage.py compress_assets
./manage.py runserver 0.0.0.0:8000

Under Ubuntu 12.10 (64 bit), all the above worked after first installing some packages and rejiggering some files:

sudo apt-get install build-essential python-dev python-pip \
    python-virtualenv mysql-server libmysqlclient-dev libxml2-dev \
    libxslt-dev memcached libjpeg8 libjpeg62-dev libfreetype6 \
    libfreetype6-dev

sudo ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib
sudo ln -s /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib
sudo ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib

License

This software is licensed under the New BSD License. For more information, read the file LICENSE.

Releases

No releases published

Packages

No packages published

Languages

  • Python 94.6%
  • CSS 2.4%
  • JavaScript 1.5%
  • Makefile 1.1%
  • Shell 0.4%