This is a simple Django app for managing blog posts on your website.
- Clone the repository:
git clone https://github.com/yourusername/django-blog-post-app.git
cd blog_post
- Create a virtual environment and install dependencies:
python -m venv venv
source venv/bin/activate # On Windows, use 'venv\Scripts\activate'
pip install -r requirements.txt
-
Apply Migration:
python manage.py migrate -
Create a superuser account:
python manage.py createsuperuser -
Run the development server:
python manage.py runserver
-
User Authentication: Utilizes Django's built-in authentication system for managing authors and administrators.
-
Crud Operations: Create, Read, Update, and Delete blog posts seamlessly through the admin interface.