chan4lk / blog

React + Github Issues πŸ‘‰ Your Personal Blog πŸ”₯

Home Page:https://chan4lk.github.io/blog/#/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Blog

React + Github Issues πŸ‘‰ Your Personal Blog πŸ”₯

React Blog is a personal blog system build on React that helps you create your own personal blog using Github Issues


πŸ”₯ Features

βœ… Own your content
βœ… Write using Markdown On Github Issues
βœ… Syntax/Code Highlighting
βœ… Fully customizable
βœ… Tags - Topics
βœ… Links
βœ… Reactions
βœ… Images
βœ… Minutes Read
βœ… Beautiful UI Like Medium
βœ… Easy deployment: Using Github Pages
βœ… Instant Effects on Blog when changing github issues
βœ… Beautiful blockquote

πŸ”— Live Demo

Here's a live demo

Github Issues / Blogs


πŸš€ Get Up and Running in 10 Minutes

You can get a react-blog site up and running on your local dev environment in 10 minutes with these five steps:

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

You'll need Git and Node.js (which comes with npm) installed on your computer

node@v10.16.0 or higher
npm@6.9.0 or higher
git@2.17.1 or higher

1. From your command line, clone and run react-blog-github:

# Clone this repository
$ git clone https://github.com/username/react-blog-github.git

# Go into the repository
$ cd react-blog-github

# Install dependencies
$ npm install

2. Genrate a Github Personal Access Token.

Genrate a Github personal access token using these Instructions Make sure you don't select any scope just generate a simple token without any scope

After that copy your genrated token and then encode your token into base 64 using this Website

Copy your base64 converted token

3. Change /src/config.js.

Go to your cloned repository and make the following changes in /src/config.js

export const config = {

  // Your Github Converted Token
  githubConvertedToken: "Github Converted Token",

  //   Your Github User Name
  githubUserName: "chan4lk",

  //   Your Github Repo Name Where You Have your issues as Blog

  githubRepo: "blog",

  // Your Personal Blog Title 

  title : "Chandima's Blog" , 

  // Your Personal Blog Subtitle 

  subtitle : "Full Stack Developer Blog"
  
};

4. Write A Blog.

After doing following changes now you just need to write a blog on repository issues that you have mentioned in your config.js

  • Open your repository github issues
  • Create a new issue
  • Now write your blog in github issue in markdown. You can also use slack edit to write your markdown
  • Add a label blog on your github issue to make it different from other standard issues. Keep in mind blog label is mandatory otherwise it won't show on your website.

5. Start Your React App.

That's it now you just need to start your react application From your command line run .

# Run
$ npm start

πŸ› οΈ Technologies used

This project is only possible thanks to the awesomeness of the following projects:

🌱 Inspiration

This project is inspired from many other similar projects.

🀝 Contributing

Any idea on how we can make this more awesome ? Open a new issue! We need all the help we can get to make this project awesome!

πŸ’₯ Todo

  • Add Comment From Github
  • Add Loader
  • Authentication using Github
  • Seo using React helmet
  • Footer
  • Header
  • Social Media Sharing

πŸ“„ License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

React + Github Issues πŸ‘‰ Your Personal Blog πŸ”₯

https://chan4lk.github.io/blog/#/

License:MIT License


Languages

Language:JavaScript 68.2%Language:CSS 25.5%Language:HTML 6.3%