ActonBarn Auction
Setup: ------ First step: set up virtual environment ---- Read this for more information: http://docs.python-guide.org/en/latest/dev/virtualenvs/
Step by step:
- pip install virtualenv
- virtualenv -p /usr/bin/python2.7 venv
- source venv/bin/activate
- pip install -r requirements.txt
Then set up the app
- python manage.py syncdb # to initialize the db
- python manage.py runserver # to lunch the service