- Grace Sharma
- Aritra Mitra
- Create virtual environment
sudo pip install virtualenv # This may already be installed
virtualenv .env # Create a virtual environment
- Activate virtual environment
source .env/bin/activate # Activate the virtual environment
pip install -r requirements.txt # Check/Install dependencies
- Run following commands
python manage.py makemigrations
python manage.py migrate
python manage.py runserver # To Start Local Server
- Procedure to create an administrator
python manage.py createsuperuser
- templates/base.html - Basic Layout and Top Navigation Bar
- static/main.css - Main CSS file, applied to all pages
- Course/templates/Course/home.html - Body HTML of Course Page contains Main Video, Playlist, Text Editor/Python IDE
- User/templates/User/ - Body HTML of Login, Logout, Signup Page