A Django-based website for http://globaltrademotors.com
Python 2.7
pip
https://pypi.python.org/pypi/pip
Create a virtual environment trademotors
and activate.
pip install virtualenv
virtualenv trademotors
cd trademotors
source bin/activate
git clone [email protected]:sitture/trademotors.git .
pip install -r requirements.txt
Once the above packages are installed successfully, you should then be able to run the django server.
To run the application locally, open the file src/gp_cars/settings/local.py
and set DEBUG
to True
.
cd src
python manage.py runserver
From the src
directory, run the below to execute tests.
python manage.py test