Django Blog
This web application creates an very basic blog site using Django. The site allows anyone logged in user to add comments and new publications via a form. Any user can list all bloggers, all blogs, and detail for bloggers and blogs (including comments for each blog).
To setup the project on your local machine:
-
Click on
Fork. -
Go to your fork and
clonethe project to your local machine. -
Install the requirements
pip install -r requirements.txt. -
Apply the migrations
python manage.py migrate. -
Finally, run the development server
python manage.py runserver. -
The project will be available at 127.0.0.1:8000.