Getting started with the Full Stack Typescript repository
The following walkthrough is provided to update the Full Stack Typescript repository for your own projects
Last updated
The following walkthrough is provided to update the Full Stack Typescript repository for your own projects
Last updated
Clone the Full Stack Typescript repository
Setup workspace and Firebase environments
Update Firebase Cli
Search and replace project settings
Build and deploy your project
Deploy your project's functions
Update Github workflows
Delete unwanted libraries
Follow the environment setup guides to prepare your workspace and Firebase project for use.
Login
to the Firebase Cli, if not already.
Run
firebase projects:list
to display the available projects
Run
firebase use {{project id}}
to set the active project
Search
for full-stack-typescript
and replace with your project name.
Search
for fullStackTypescript
and replace with your project name in camelCase
.
Update
apps\example-project.eslintrc.json
directive selector prefix to be camelCase
Update
firebase settings in the messaging service worker for your project apps\full-stack-typescript\src\firebase-messaging-sw.js
Update
.firebaserc
to match your project settings:
Update
the target
and hosting
keys to your project's display name
Update
the hosting
value to your project id
Update
the default
value to your project id
Update
environment files to match your project settings.
apps\full-stack-typescript\src\environments\environment.prod.ts
apps\full-stack-typescript\src\environments\environment.ts
Rename
project folders to your project name
Update
the package.json
version
number to the appropriate version.
Run
npm run build:example-project
to build the client side application.
Run
firebase deploy --only hosting
to deploy the application to Firebase hosting.
Run
firebase deploy --only functions
to build and deploy the Google Cloud Functions.
Delete
or update
the Github workflows files if you will be using Github actions to deploy your project.
Update
firebaseServiceAccount
with your project's value
Update
projectId
with your project id
Delete
libraries that your project will not be using from libs