/ballotify

Ballotify 2.0 One more try :)

Primary LanguagePython

Ballotify 2.0

Circle CI

Installation

Creating the environment

Create a virtual python environment for the project. If you're not using virtualenv or virtualenvwrapper you may skip this step.

For virtualenvwrapper

mkvirtualenv ballotify

For virtualenv

virtualenv ballotify
source ballotify/bin/activate

Clone the code

git clone YOUR-CUSTOM-REPO-LINK/ballotify.git

Install requirements

cd ballotify
pip install -r reqs/dev.txt

Configure project

cp ballotify/settings/dev.py.example ballotify/settings/dev.py
vi ballotify/settings/dev.py

Sync/migrate database

python manage.py migrate

Running Django

python manage.py runserver