1.2 KiB
1.2 KiB
Quickstart Guide
Feature: Anonymous Desire Aggregator Date: 2025-10-09
This guide provides instructions to set up and run the project locally using Docker.
Prerequisites
- Docker and Docker Compose must be installed on your system.
- You must have a Google AI API key for the Gemini model family.
Setup
-
Clone the Repository
git clone <repository-url> cd <repository-directory> -
Configure Environment Variables
Create a
.envfile in thebackend/directory:backend/.envAdd your Google AI API key to this file:
GEMINI_API_KEY="your_api_key_here"
Running the Application
-
Build and Run Containers
From the root of the project, run the following command:
docker-compose up --buildThis will build the Docker images for both the frontend and backend services and start them.
-
Access the Application
- The frontend will be available at
http://localhost:3000. - The backend API will be served at
http://localhost:8000.
You can now open your web browser to
http://localhost:3000to use the application. - The frontend will be available at