‼️ Get Started
Welcome to the ExtensionFast documentation. This is the starting point for building your production-ready extension using ExtensionFast.
Here we go over a quick overview of the boilerplate. Once you’re done with that, start with this tutorial to launch your project in 5 minutes.
Clone the Repository and Navigate
- Run the following commands one-by-one to clone the ExtensionFast repository, navigate into the project folder, copy over the .env file, and install dependencies:
undefined
git clone https://github.com/ExtensionFast/extensionfast-starter.git
cd extensionfast-starter
cp .env.example .env.local
npm install
git remote remove origin
- Run
npm run dev
to open a local server
.env file
After you copy over the .env.example
file to .env.local
. The file content should look like this:
.env.local
# General information
VITE_DEV_SERVER_URL=localhost:3000
# Keys for Firebase
VITE_FIREBASE_API_KEY=
VITE_FIREBASE_AUTH_DOMAIN=
VITE_FIREBASE_PROJECT_ID=
VITE_FIREBASE_STORAGE_BUCKET=
VITE_FIREBASE_MESSAGING_SENDER_ID=
VITE_FIREBASE_APP_ID=
# Keys for OAuth
VITE_OAUTH_CLIENT_ID=
Now that you’re done, head over to this tutorial to launch your project in 5 minutes.
Last updated on