- Full grant strategy framework for renewable energy & green hydrogen - AI-powered grant studio, partner outreach, financial modeling - Umami analytics with data-performance tracking - Live Degelas metrics connected to solar.degelas.be - Trilingual (EN/FR/AR) with i18n support - Dockerized with Nginx frontend + Express API proxy
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
# ──────────────────────────────────────────────────────────────────────────────
|
|
# Atlas Green Morocco — Environment Variables
|
|
# ──────────────────────────────────────────────────────────────────────────────
|
|
# Copy this file to .env and fill in your values.
|
|
# NEVER commit .env to git.
|
|
|
|
# Required for AI features — get yours at https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=sk-YOUR_KEY_HERE
|
|
|
|
# Server port (default 3001 — matches docker-compose and nginx proxy)
|
|
PORT=3001
|
|
|
|
# Restrict CORS to your frontend domain in production
|
|
# Leave * for local dev
|
|
CLIENT_ORIGIN=*
|
|
|
|
# Degelas SaaS API (optional — mock data is used if not set)
|
|
# Called by server/routes/degelas.ts when both values are set. The grants app
|
|
# talks to the degelas-backend FastAPI service over the shared
|
|
# fullstack_degelas_proxy docker network (no public DNS / no cert required).
|
|
# DEGELAS_API_KEY must match the value in /root/solar_trading_engine/.env.
|
|
# Generate with: openssl rand -hex 32
|
|
DEGELAS_API_URL=http://degelas-backend:8000
|
|
DEGELAS_API_KEY=
|