This guide will help you set up the project correctly.
git clone https://github.com/sbndAbhijeet/Course-Registration.git
cd registration_project
python -m venv venv
- Windows:
venv\Scripts\activate
- Mac/Linux:
source venv/bin/activate
Ensure you install the exact versions by running:
pip install -r requirements.txt
python manage.py runserver
If you face issues, check your installed versions:
python --version
python -m django --version
- Create a new branch before making changes:
git checkout -b feature-branch
- Commit your changes:
git add . git commit -m "Your message here"
- Push your branch:
git push origin feature-branch
- Create a Pull Request (PR) on GitHub before merging into
main
.
- Virtual environment not activating? Ensure you're in the correct directory.
- Different Python version? Install the correct version and recreate the virtual environment.
- Dependency mismatch? Run:
pip install -r requirements.txt --no-cache-dir
- Your Name (@your-github)
- Other team members...
Happy coding! 🚀
pillow sendgrid