Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasonstitt/blog
Personal blog - app and content
https://github.com/jasonstitt/blog
Last synced: 27 days ago
JSON representation
Personal blog - app and content
- Host: GitHub
- URL: https://github.com/jasonstitt/blog
- Owner: jasonstitt
- License: mit
- Created: 2024-04-29T02:38:39.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-02T01:19:51.000Z (8 months ago)
- Last Synced: 2024-11-09T11:05:16.854Z (3 months ago)
- Language: Svelte
- Homepage: https://jasonstitt.com
- Size: 500 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Jason Stitt's Blog
A Svelte app for my personal blog. I wrote about the process of creating this in [_Did switching to Svelte make my blog better?_](https://jasonstitt.com/svelte-blog) and decided to publish the code.
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
## License
Copyright 2009-2024 Jason Stitt.
The blog's content (e.g. posts, images, etc.) is all rights reserved and is not open source.
The code is under the MIT license, included here in LICENSE.txt.
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev# or start the server and open the app in a new browser tab
npm run dev -- --open
```## Building
To create a production version of your app:
```bash
npm run build
```