Skip to content

ShelterAssociates/Shelter

Repository files navigation

Shelter

Installing on Ubuntu

  1. Clone the project

git clone https://github.com/ShelterAssociates/Shelter.git

  1. Activate a python virtualenv.

    Create the new virtual environment mkvirtualenv or workon command and activate the environment before starting with installation.

    You can skip this step if you don't want to create a virtual environment.

  2. Install postgressql server

apt-get install postgresql-server-dev-9.3

  1. Install python:

pip install -r requirement.txt

  1. Migrate the database

python manage.py syncdb python manage.py migrate

  1. Run the server

python manage.py runserver