/laara

Laara Group Properties Site

Primary LanguageTypeScript

Laara Group Interview

Live Link

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn
  • Git
  1. Clone the repository:
git clone https://github.com/DavidAmunga/laara.git
cd laara
  1. Install dependencies:
npm install
# or
yarn install

Environment Setup

This project uses environment variables to manage sensitive configuration. Follow these steps to set up your local environment:

  1. Create a .env.local file in the root directory of the project
  2. Add your Google Maps API key to the file:
.env.local
VITE_GOOGLE_MAPS_API_KEY=your_api_key_here

Development

To start the development server:

npm run dev
# or
yarn dev

The application will be available at http://localhost:5173

Building for Production

To create a production build:

npm run build
# or
yarn build