Look at the Nuxt 3 documentation to learn more. To selfhost:
- Create a Firebase project with Authentication and Firestore enabled
- Rename example.env to .env and put in your Firebase credentials
- Not sure if you need to run firebase init. Tbd lol.
- Run
firebase functions:secrets:set POSTMARK_API_KEY
, and set it to your API key. firebase deploy
for the rules n functions (eventually)
Make sure to install the dependencies:
# bun
bun install
Start the development server on http://localhost:3000
:
# bun
bun run dev
Build the application for production:
# bun
bun run build
Locally preview production build:
# bun
bun run preview
Check out the deployment documentation for more information.