- Node.js (v16 or higher)
- npm or yarn
- Git
- Clone the repository:
git clone https://github.com/DavidAmunga/laara.git
cd laara
- Install dependencies:
npm install
# or
yarn install
This project uses environment variables to manage sensitive configuration. Follow these steps to set up your local environment:
- Create a
.env.local
file in the root directory of the project - Add your Google Maps API key to the file:
.env.local
VITE_GOOGLE_MAPS_API_KEY=your_api_key_here
To start the development server:
npm run dev
# or
yarn dev
The application will be available at http://localhost:5173
To create a production build:
npm run build
# or
yarn build