First make sure that you have python, django & Node.js installed.
Now clone this project to your machine
git clone https://github.com/7Pros/circuit.git
After that's done go into the created circuit
folder.
Run
python manage.py makemigrations
python manage.py migrate
We use Polymer for the frontend.
To pull in all Polymer dependencies we use bower.
At this point you should already have node installed, so run the following to get bower, if not installed.
npm install -g bower
Now you can use bower to fetch all Polymer dependencies
bower install
You're ready to start the django webserver with
python manage.py runserver
Open 127.0.0.1:8000 - DONE
If you want to contribute you should take a look at CONTRIBUTING.md.