/uwc_blog

Blog for UA Web Challenge

Primary LanguageJavaScript

Installation

Creating the environment

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

For virtualenvwrapper

mkvirtualenv uwc-env

For virtualenv

virtualenv uwc-env
cd uwc-env
source bin/activate

Clone the code

Obtain the url to your git repository.

git clone git@github.com:vasyabigi/uwc.git uwc

Install requirements

cd uwc
pip install -r requirements.txt

Configure project

cp uwc/local_settings.py.example uwc/local_settings.py
vi uwc/local_settings.py

Sync database

python manage.py syncdb --all

Running

python manage.py runserver

Open browser to http://127.0.0.1:8000