This is a basic Django project that implements a CRUD for posts, where authenticated users can add, edit, and delete posts.
- Install the Dependencies:
pip install -r requirements.txt
- Run the Migrations:
python manage.py makemigrations python manage.py migrate
- Create a Superuser:
python manage.py createsuperuser
- Run the Development Server:
python manage.py runserver