https://github.com/larssonoliver/blg
Personal Blog
https://github.com/larssonoliver/blg
blog giscus nuxt nuxt3 typescript vue vue3
Last synced: about 2 months ago
JSON representation
Personal Blog
- Host: GitHub
- URL: https://github.com/larssonoliver/blg
- Owner: LarssonOliver
- License: mit
- Created: 2022-04-03T10:35:54.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T08:14:32.000Z (2 months ago)
- Last Synced: 2025-03-21T09:24:33.247Z (2 months ago)
- Topics: blog, giscus, nuxt, nuxt3, typescript, vue, vue3
- Language: Vue
- Homepage: https://blog.larssonoliver.com
- Size: 2.76 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# blg - My personal blog platform
This blog platform was built by me for my needs. It's a little rough
around the edges, and I don't expect anyone else to try to use it. But it
gives me great freedom in customizing it, and it was fun to build.The blog content, such as posts, are not hosted here. You may find the
deployed site over at
[https://blog.larssonoliver.com](https://blog.larssonoliver.com). Hope to
see you there!## Development
Install the dependencies:
```bash
npm install
```Start the development server:
```bash
npm run dev
```### Production
Build the application for production:
```bash
npm run build
```Run the node-based server;
```bash
npm start
```## Deploy New Release
Bump the version and push the tag:
```bash
npm version {major,minor,patch}
git push && git push --tags
```