Creating a blog like application using python and Django where you can create accounts, post updates, comment, like and see other people posts, comments
Start by building
- user Authentication - which make sure people can SignIn, create accountes ,sign out , so on and so forth
- create posts- allow people to create posts, so they can post something on there blog or see there all blogs at one place
- allow functionality like Likes, Comments and kind of all the other things you would assume a blog app has.
My.Video2.mp4
PLEASE FEEL FREE TO FORK THE PROJECT AND START CONTRIBUTING. :)
Your laptop with python 3.6.x (onwards) installed.
NOTE: Those with Linux and MacOSX would have Python installed by default, no action required.
Windows: Download the version for your laptop via https://www.python.org/downloads/
NOTES In your preferred editor, make sure indentation is set to "4 spaces".
- Make sure you have Django installed in python otherwise code may fail, to install Django in your machine > open python in your terminal then type
pip install django
to install.⚠️
- Clone or download repositiory: https://github.com/eddyvk01/Blog-website
- In source folder, run
python manage.py runserver
to start program, optionally, run with--help
argument to see other runtime options.