Colombian map where you can fill with th departments that you have.
Clone the repository:
git clone https://github.com/Porter-smith/astro-firebase-svelte-tailwind-starter.git
Navigate to the project directory:
cd astro-firebase-svelte-tailwind-starter
Install the dependencies:
pnpm install
Start the development server:
pnpm run dev
Follow this guide to quickly set up Firebase for your project. For more in-depth instructions, see FIREBASE_SETUP.md.
Project settings
> Service accounts
.Generate new private key
, then download and secure the JSON file.</>
)
in Project settings
> Your apps
to create one.configuration
Place your keys in the appropriate files:
.env
: Add service account key values from the downloaded JSON.src/firebase/client.ts
: Insert the web app configuration object.To configure your environment variables quickly:
Save your service account creds as service-account.json
in the project's root.
Run
node scripts/createEnvFromServiceAccount.js
A .env file with all Firebase variables will be generated. So you don't have to copy and paste one by one each key.
Note: After setting up the .env file, remember to remove the service-account.json from your project's root directory to protect your credentials.
Authentication
.Get started
.You should now be able to run your application and use Firebase's authentication services.
š Happy coding!