/wheretogo

Recommend where to spend time with friends

Primary LanguagePython

WhereToGo Django Project

Prerequisites

  • python >= 2.5
  • pip
  • virtualenv/wrapper (optional)

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 --no-site-packages wheretogo-env

For virtualenv

virtualenv --no-site-packages wheretogo-env
cd wheretogo-env
source bin/activate

Clone the code

Obtain the url to your git repository.

git clone https://vasyabigi@github.com/equeny/wheretogo.git wheretogo

Install requirements

cd wheretogo
pip install -r requirements.txt

Configure project

cp wheretogo/__local_settings.py wheretogo/local_settings.py
vi wheretogo/local_settings.py

Sync database

python manage.py syncdb

Running

python manage.py runserver

Open browser to http://127.0.0.1:8000