Getting Started
Set up COLA Solar System locally in a few steps — clone the repo, install dependencies, configure your environment, and start the development server.
### Prerequisites
Ensure you have the following installed before proceeding:
- **Node.js 20+**
- **npm**
- A **Supabase Project** with your URL and anon key ready.
### Clone Repository
```bash
git clone cd cola-solar-system
```
### Install Dependencies
```bash
npm install
```
### Configure Environment Variables
Create a `.env` file in the root of the project and add your Supabase credentials:
```env
VITE_SUPABASE_URL=your_supabase_url
VITE_SUPABASE_ANON_KEY=your_supabase_anon_key
```
### Start Development
```bash
npm run dev
```