Detailed guide to setup an instance.
- Install all dependencies
npm i
# or
yarn
- Copy
.env.example
to.env.local
and modify the contents with the proper values. - Build the app
npm run build
# or
yarn build
- Run the server
npm start
# or
yarn start
- You can run Firebase emulator suite to test the app locally.
npm run emulator:start
# or
yarn emulator:start
- To run the app with emulator, run the following command.
npm run dev:emulator
# or
yarn dev:emulator
- If not, you can just run the
dev
script.
npm run dev
# or
yarn dev
BSD 3-Clause License