This repository contains core Python programming concepts and a complete web application built using the Django framework.
This repository is strictly created for educational and training purposes. It serves as a personal log to learn and practice core Python programming and Django framework concepts.
Follow these steps to set up the environment and run the project locally.
Make sure you have Python installed on your system.
-
Windows/Linux/macOS: Download and install it from python.org.
-
Verify installation:
python --version
It is recommended to run the project inside a virtual environment.
python -m venv venv
.\venv\Scripts\activate
source venv/bin/activate
Install the required framework using pip:
pip install django
Navigate to the project directory where manage.py is located and start the server:
cd Python_for_all_levels_course/Django_Project
python manage.py migrate
python manage.py runserver