Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.38 KB

README.md

File metadata and controls

47 lines (31 loc) · 1.38 KB

My Blog

This is a Next.js project bootstrapped with create-next-app.

Contributing

Please consider taking a look at the open issues for this project, which may serve as a good source for blog-worthy challenges.

1. Fork

Go to the repo for this project and fork it.

Clone your fork locally:

git clone https://github.com/yourname/blog.git

Set the remote "upstream" to the original repo.

git remote add upstream https://github.com/haydenlinder/blog.git

2. Run Locally

First, run the development server:

cd blog
npm install
npm run dev

Open http://localhost:3000 with your browser to see the result.

3. Write

Create a new markdown (.md) file in the /markdown/ folder. Use dash-deliniated file names, for example: New-Blog-Post.md.

Write some markdown.

Visit http://localhost:3000/New-Blog-Post, but replace New-Blog-Post with the name of the file you created, excluding the .md extension. You'll need to refresh the browser page after making file changes.

4. Publish

git push origin main

Then open a pull request.