A initial template for a new NestJs project configured to be able to upload to cloud functions of firebase
Steps to follow to work on this template:
- Clone this repository
- Set up your firebase project with:
firebase init
- Change to the functions folder
cd ./functions/
- Install all dependencies
npm intall
- Do a local test with the firebase local server
npm run serve
so you can see that everything is fine. - Once you see it running without errors in your local environment, take the project to the server
npm run deploy
- Start the development of your back end using nestJs:
npm run start:dev