https://github.com/nexfortisme/oss-forums
Simple web forums with none of the "modern" standard data collection
https://github.com/nexfortisme/oss-forums
bun honojs sqlite vue3
Last synced: 3 months ago
JSON representation
Simple web forums with none of the "modern" standard data collection
- Host: GitHub
- URL: https://github.com/nexfortisme/oss-forums
- Owner: nexfortisme
- Created: 2026-02-09T15:57:17.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-10T16:25:19.000Z (3 months ago)
- Last Synced: 2026-04-04T04:55:42.156Z (3 months ago)
- Topics: bun, honojs, sqlite, vue3
- Language: TypeScript
- Homepage: https://oss-forums.nexfortisme.com
- Size: 286 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 42
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# oss-forums
Monorepo with a Vue + Vite frontend and a Hono + Bun backend.
## Demo Site
See an example of the app deployed [HERE](https://oss-forums.nexfortisme.com/channels)
## Layout
- `apps/web`: Vite + Vue app
- `apps/api`: Hono API running on Bun
- `packages/shared`: optional shared code (types, utilities)
## Project Setup
```sh
bun install
```
## Development
Run both frontend and backend:
```sh
bun run dev
```
Run only one side:
```sh
bun run dev:web
bun run dev:api
```
## Web App (apps/web)
```sh
cd apps/web
bun dev
bun run build
bun test:unit
bun lint
```
## API (apps/api)
```sh
cd apps/api
bun run dev
bun run start
```