From f3b1d45f6f2a2bcbe13f197a6c5a0b542468be17 Mon Sep 17 00:00:00 2001 From: wboughattas Date: Tue, 30 Dec 2025 23:54:22 -0500 Subject: [PATCH] revert change --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md 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)_