This project is a simple blog application built with Django.
It allows you to create, manage, and display blog posts through a web interface.
- Python 3.x
- Django 4.x
- SQLite (default database)
- HTML, CSS (templates and static files)
-
Clone the repository:
git clone https://github.com/Kucharito/Python-Django.git cd Python-Django/DJANGOesteraz/blog
-
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # Linux/Mac venv\Scripts\activate # Windows
-
Install dependencies:
pip install django
-
Run database migrations:
python manage.py migrate
-
Start the development server:
python manage.py runserver
-
Open your browser and go to: http://127.0.0.1:8000/
- User registration and blog post management
- Display of blog posts on the homepage
- Administration interface (Django Admin)
Created by Adam Kuchár
Developed as an exercise in the Django framework.