Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/offeex/boogaloo
Fun blog
https://github.com/offeex/boogaloo
Last synced: 1 day ago
JSON representation
Fun blog
- Host: GitHub
- URL: https://github.com/offeex/boogaloo
- Owner: offeex
- Created: 2023-10-19T21:13:43.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-20T08:47:08.000Z (over 1 year ago)
- Last Synced: 2024-11-18T14:37:03.690Z (2 months ago)
- Language: Svelte
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Boogaloo
## Overview
SvelteKit-powered Full-stack blog application.It utilizies:
- **[SQLite](https://www.sqlite.org/index.html)** for database
- **[DrizzleORM](https://github.com/drizzle-team/drizzle-orm)** for ORM
- **[Lucia-Auth](https://github.com/lucia-auth/lucia)** for authentication
- **[TypeScript](https://github.com/microsoft/TypeScript)** for type safetyIt features:
- Authentication (register/login/logout)
- Post creation (title, content)
- Comments and replies
- Username change## Quick Start
### Prerequisites
You must have [pnpm](https://pnpm.io/) globally installed1. Clone the repo
2. install all dependencies with `pnpm i`
3. Create *db* folder and add *main.db* file in repo's root (eg. *boogaloo/db/main.db*)
4. run `pnpm drizzle-kit push:sqlite` to initialize db
5. `pnpm run vite dev` to run app