-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
55 lines (41 loc) · 1.2 KB
/
Copy path.env.example
File metadata and controls
55 lines (41 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# DATABASE_URL = "Your database URL here"
# OPENAI_API_KEY = "Your OpenAI API Key here"
# GOOGLE_API = "Google API Key Here"
# AWS_ACCESS_KEY_ID="YOUR_KEY ID"
# AWS_SECRET_ACCESS_KEY="YOUR_SECRET KEY"
# AWS_REGION="your-region (e.g., us-west-2)"
# S3_BUCKET_NAME="your-bucket-name (e.g., my-frankwhite-bucket)"
# Application
APP_NAME=SeeMyBodyAI Backend
APP_ENV=local
DEBUG=true
API_V1_PREFIX=/api/v1
BACKEND_CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000
# Database
DATABASE_URL=postgresql+psycopg2://postgres:postgres@localhost:5432/seemybodyai
# Admin Credentials
admin_username = your_admin_username
admin_password = your_admin_password
# Auth
SECRET_KEY=change-me
ALGORITHM=HS256
ACCESS_TOKEN_EXPIRE_MINUTES=60
# OpenAI / LangChain agent
OPEN_AI=sk-change-me
LANGCHAIN_TRACING_V2=false
LANGCHAIN_API_KEY=
# Google GenAI
GOOGLE_API_KEY=change-me
# AWS S3
AWS_REGION=us-east-1
AWS_ACCESS_KEY_ID=change-me
AWS_SECRET_ACCESS_KEY=change-me
S3_BUCKET_NAME=your-private-bucket
# Stripe
SECRET_KEY_STRIPE=sk_test_change_me
PRICE_ID=price_change_me
STRIPE_WEBHOOK_SECRET=whsec_change_me
# Wompi
WOMPI_PUBLIC_KEY="pub_test_xxxx"
WOMPI_PRIVATE_KEY="prv_test_xxxx"
WOMPI_SANDBOX_URL="https://sandbox.wompi.co/v1"