Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hacksore/turborepo-firebase-example
Turborepo + Firebase
https://github.com/hacksore/turborepo-firebase-example
firebase monorepo turborepo
Last synced: 3 months ago
JSON representation
Turborepo + Firebase
- Host: GitHub
- URL: https://github.com/hacksore/turborepo-firebase-example
- Owner: Hacksore
- Created: 2022-05-04T15:56:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-31T01:50:07.000Z (about 1 year ago)
- Last Synced: 2024-10-03T12:23:08.972Z (3 months ago)
- Topics: firebase, monorepo, turborepo
- Language: TypeScript
- Homepage: https://turborepo-demo.web.app
- Size: 677 KB
- Stars: 48
- Watchers: 3
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Turborepo + Firebase
How to combine turborepo and firebase to have idempotent deployments from local and CI.
```
├── apps
│ ├── api # firebase function that is typescript and loaded as ESM and deployed as a firebase function
│ └── web # the react+vite front end deployed to firebase hosting
``````
# install the deps
npm install# to develop
npm start# to deploy
npm run deploy
```