A Django-based website for http://techmiyacommercials.com
Follow this guide to setup this project on your local machine.
-
Install python 2.x, git and virtualenv in your computer.
-
Get the source code on your machine by-
git clone https://github.com/sitture/techmiya-commercials.git
-
Create a python virtual environment and install python and django related dependencies.
cd techmiya-commercials virtualenv venv # create virtual env source venv/bin/activate # run this command everytime before starting on the project pip install -r requirements/dev.txt
-
For creating database migrations run
python manage.py migrate
python manage.py makemigrations
-
For running the server
python manage.py runserver
-
Open the browser and got to the following link.
127.0.0.1:8000