Blog site that uses vue and a markdown converter to host blogs.
To add a new blog
- Add the markdown file to to the
./markdown/<year>
directory - Update the
./static/bloglist.json
e.g. test.md in 2019 directory would mean you need to add to the 2019 array
"2019": [
{
"id":"test",
"date": "Jan 01, 2019",
"title": "title of test.md",
"description": "description of test.md"
}
]
- To add a homepage image add an image the same name file name as the markdown file e.g. test.png to the
public/images
directory - commit and push your changes
- run
./deploy.sh
node --version
v12.18.3
npm install
npm run serve
npm run build
npm run test
npm run lint