This is a "Blogging Platform" which gives all general features a blog should have.
The backend is completely build on Django using Django Rest Framework, while the frontend is completed using ReactJS.
FrontEnd :https://simpleisbetter.herokuapp.com/
BackEnd :https://softbike.herokuapp.com/
- Login/Registration
- Minimal Design
- Create/Edit/Delete Your Posts
- User Profile
- Comment Enable On Post Using disqus
- Comment Count On Post
- Live Search Blog
- Filter Blog By Author By Click on Author Name
- Admin Panel
- Create/View/Edit/Delete A User
- Pagination on All blog list and Live search
- Create/View/Edit/Delete A Post By Any User
- View/Reply All Comments In The Blog
- View/Edit/Delete All Newsletter In The Blog
- View/Reply All Comments To A Specific Post
- Publish/Unpublish A Post
- Clone this repository:
git clone https://github.com/dojutsu-user/Django-React-Blog.git
. - Change the current directory to
backend
folder:cd ./Django-React-Blog/backend/adminapi/
. - Create a virutal environment and install all backend dependencies with pipenv:
pipenv install
. - Start the virtual environment:
pipenv shell
. - Change the working directory to
adminapi
which contains themanage.py
file:cd ./adminapi
. - Run
python manage.py makemigrations
. - Run
python manage.py migrate
. - Create a superuser:
python manage.py createsuperuser
- Run the server:
python manage.py runserver
.
- Navigate the current working directory to
landing
:cd ./Django-React-Blog/frontend/blog_frontend/
. - Install the all frontend dependencies using npm:
npm install
. - Run the server:
npm start
.
- Make sure that both Backend and Frontend Servers are running.
- Open your browser and navigate to localhost:3000.
- Go To http://localhost:3000/login/.
- Go To Signup page if you are not registered http://localhost:3000/signup/.
- Login with the superuser credentials created while setting up the Backend (Step: 8)
- Navigate To Dashboard -> Your all New Post (http://localhost:3000/user/dashboard/create-new-post).
- Navigate To Dashboard -> create New Post (http://localhost:3000/user/addblog/).
- Fill the form to create a new post and then Submit it.
- The submitted post will not appear on the homescreen unless and until the admin approves it.
- To approve the post, go to Dashboard -> Admin Panel -> View All Posts and then click on Edit Button.
- Check the checkbox labelled Verified and then submit.
- After the post gets published, it will be displayed on the homepage of the blog (localhost:3000).
- Note: Once the post gets published, the user can only edit the post from the Dashboard, however, the admin still can edit/delete the post from the Admin Panel
API Documentation is generated using the default tool provided by Django Rest Framework.
- Make sure that the Backend Server is running.
Regrads
Rahul Raj