- git clone https://github.com/abhishekvarde/final_mock.git
- Change to final_mock directory
cd final_mock
- create virtual environment using virtualenv
Commands are as follows:
pip install virtualenv virtualenv venv venv\Scripts\activate
- Check in command line if virtualenv is activated or not.
If activated it will be as follows:
(venv) A:final_mock>
- Now install required packages:
pip install -r requirements.txt
- Be sure you have completed above installation steps.
- Now first connect the project to database.
- Open cet>settings.py>
- In this file you have to edit local MySql server login configuration(username and password).
- After this create database cet_portal on your localhost
create database cet_portal; use cet_portal;
- After this import the sql-file in your database using workbench or command-line
- Now you can run project using command:
python manage.py runserver
1. Fork this repository
2. create a branch for your changes
3. configure an upstream to this repository
4. create a pull request