Skip to content
This repository has been archived by the owner on Aug 20, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 503 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 503 Bytes

BarnAuction

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:

  1. pip install virtualenv
  2. virtualenv -p /usr/bin/python2.7 venv
  3. source venv/bin/activate
  4. pip install -r requirements.txt

Then set up the app

  1. python manage.py syncdb # to initialize the db
  2. python manage.py runserver # to lunch the service