Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cyrus-0101/monorepo-template
This monorepo uses Turborepo to manage the two packages (web, api).
https://github.com/cyrus-0101/monorepo-template
bun express expressjs turborepo
Last synced: about 6 hours ago
JSON representation
This monorepo uses Turborepo to manage the two packages (web, api).
- Host: GitHub
- URL: https://github.com/cyrus-0101/monorepo-template
- Owner: Cyrus-0101
- Created: 2025-01-14T20:28:55.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2025-01-15T13:14:45.000Z (3 days ago)
- Last Synced: 2025-01-15T14:56:58.075Z (2 days ago)
- Topics: bun, express, expressjs, turborepo
- Language: TypeScript
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monorepo template
## Development
This monorepo uses Turborepo to manage the two packages (web, api).
To build all packages run `bun build` from root.To build a specific package run `bun build --filter=`
To start the API server run `bun start:api`.
Similarly, to start the web server run `bun start:web`.The API is an Express.js server written in TypeScript.
It comes with out of the box support for Supabase.
If you are not developing with Supabase, delete the `gen:supabase:types` script.
If you are using Supabase, replace the `` placeholder with your project ID.The web project is a default Next.js app with Tailwind CSS and TypeScript.