This is my first Django blog
-
cd First-Blog
-
python -m venv env
-
source venv/bin/activate # On Windows use
venv\Scripts\activate -
pip install -r requirements.txt
-
mkdir -p media/images # On Windows use
mkdir media\images -
python manage.py makemigrations
-
python manage.py migrate
-
python manage.py runserver
By following these steps, you should be able to set up and run the project locally. If you have any questions or need further assistance, feel free to ask!