AnuragGupta806 / Robotics_Club_Website

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Robotics_Club_Website

For Windows

If already installed python follow next steps:

Preferably use Python virtual env for development

  1. open Powershell terminal in an empty folder (Shift+ right click) and run python -m venv robo where robo is the environment name(can be anything).
  2. then run .\robo\Scripts\activate , this will activate the environment(green text in the beginning of every line will appear)
    If runnig scripts is not allowed then go into admin mode by start-process PowerShell -verb runas
    then Set-ExecutionPolicy RemoteSigned to allow running scripts
    to roll back enter Set-ExecutionPolicy Restricted.
  3. then install Django inside this environment with this command pip install Django
  4. then clone the git repo git clone https://github.com/MNNIT-Robotics-Club-Official/Robotics_Club_Website.git
  5. cd Robotics_Club_Website
  6. run pip install -r requirements.txt
  7. create database schema by running python manage.py makemigrations and then python manage.py migrate
  8. create a superuser using python manage.py createsuperuser and fill required fields
  9. run python manage.py runserver
  10. goto server http://127.0.0.1:8000/

If you want to install Django Globally and do not want an Virtual env, then do following steps:

  1. open Powershell terminal in an empty folder (Shift+ right click) and run pip install Django
  2. then clone the git repo git clone https://github.com/MNNIT-Robotics-Club-Official/Robotics_Club_Website.git
  3. cd Robotics_Club_Website
  4. run python manage.py runserver
  5. goto server http://127.0.0.1:8000/

Workflow -

  1. Homepage

  2. Gallery

  3. Alumni

  4. Faculty

  5. Testimonial

  6. Achievement

  7. Events

  8. Projects

  9. Login

  10. Donate

  11. Blog

  12. Workshop

  13. Notice Board

  14. Components

  15. Teams

We're in testing phase now

About

License:MIT License


Languages

Language:JavaScript 43.4%Language:HTML 41.8%Language:CSS 8.5%Language:Python 6.2%