npx create-remix@latest --template remix-run/blues-stack
- Firebase functions for
ExpressAPI - Firebase hosting for SPA using
ViteJS+React - GitHub Actions for deploying on pull requests and merge
- asdf for managing runtime versions
-
Setup runtime versions:
asdf install
-
Intialize
Firebaseproject:firebase init # update .firebaserc with project name -
Build
functions:cd functions pnpm install pnpm run build -
Build
hosting:cd web pnpm install pnpm run build -
Start dev emulators:
firebase emulators:start --only hosting,functions
-
Deploy
functionscd functions pnpm run deploy -
Deploy
hostingcd web pnpm run build pnpm run deploy