Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 909 Bytes

README.rst

File metadata and controls

40 lines (24 loc) · 909 Bytes

TolaSMS

Below you will find basic setup instructions for the TolaSMS project. To begin you should have the following applications installed on your local development system:

Getting Started

To setup your local environment you should create a virtualenv and install the necessary requirements:

virtualenv TolaSMS-env

On Posix systems you can activate your environment like this:

source TolaSMS-env/bin/activate

On Windows, you'd use:

TolaSMS-env\Scripts\activate

Then:

cd TolaSMS
pip install -U -r requirements/base.txt

Run migrate:

python manage.py migrate

You should now be able to run the development server:

python manage.py runserver