Files
Severed-Blog/README.md
2025-12-30 23:54:22 -05:00

34 lines
433 B
Markdown

# 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)_