Welcome to elearn-project! This project aims to provide a platform for online learning.
To run the project locally, follow these steps:
- Create a Virtual Environment:
# Create a virtual environment python -m venv env - Activate the Environment:
# Activate the virtual environment .\env\Scripts\activate
- Install Dependencies::
# Install required packages pip install -r requirements.txt # Apply migrations python manage.py makemigrations python manage.py migrate
- Run server:
# Run the server python manage.py runserver
to update requirements after installing new package :
pip freeze > requirements.txt