SDL Project
Website link: https://eduaccess.herokuapp.com/
- git clone https://github.com/pavankumarvm/EduAccess.git
- Change to EduAccess directory
cd EduAccess
- 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:EduAccess>
- 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 eduaccess>settings.py>
- In this file you have to edit local MySql server login configuration(username and password).
- After this create database eduaccess on your localhost
create database eduaccess; use eduaccess;
- Now first migrate all models.
python manage.py makemigrations python manage.py migrate
- Now collect a static files.
python manage.py collectstatic
- 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