Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```