Skip to content

pavankumarvm/EduAccess

Repository files navigation

EduAccess

SDL Project

Website link: https://eduaccess.herokuapp.com/

How to install

  1. git clone https://github.com/pavankumarvm/EduAccess.git
  2. Change to EduAccess directory
    cd EduAccess
  3. create virtual environment using virtualenv Commands are as follows:
    pip install virtualenv
    virtualenv venv
    venv\Scripts\activate
  4. Check in command line if virtualenv is activated or not. If activated it will be as follows:
    (venv) A:EduAccess>
  5. Now install required packages:
    pip install -r requirements.txt

How to run project

  1. Be sure you have completed above installation steps.
  2. 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;
  3. Now first migrate all models.
    python manage.py makemigrations
    python manage.py migrate
  4. Now collect a static files.
    python manage.py collectstatic
  5. Now you can run project using command:
    python manage.py runserver

Contribute to Repository

1. Fork this repository
2. create a branch for your changes
3. configure an upstream to this repository
4. create a pull request

About

SDL Project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published