diff --git a/README.md b/README.md new file mode 100644 index 0000000..148daf1 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# Severed blog (Jekyll app) + +**Live Production:** [https://blog.severed.ink/](https://blog.severed.ink/) + +## Development + +**Install Dependencies (Ruby & Node):** + +```bash +bundle install && pnpm install +``` + +**Start Local Server:** + +```bash +pnpm dev +``` + +**Build for Production:** + +```bash +pnpm build +``` + +## Code Quality + +**Format Code Manually:** + +```bash +pnpm format +``` + +_(Formatting also runs automatically on commit via Husky)_