Skip to content

Commit 092e865

Browse files
committed
default env to production for the purpose of VPC installs
1 parent 7435225 commit 092e865

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

services/chat-backend/.env.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
OPENAI_API_KEY=sk-...
2+
ENVIRONMENT=development

services/chat-backend/src/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Settings(BaseSettings):
1717
model_config = SettingsConfigDict(env_file=get_dotenv_path(".env"), env_ignore_empty=True, extra="ignore")
1818

1919
API_PREFIX: str = "/api"
20-
ENVIRONMENT: Literal["development", "staging", "production"] = "development"
20+
ENVIRONMENT: Literal["development", "staging", "production"] = "production"
2121
NUM_PROXIES: int
2222

2323

0 commit comments

Comments
 (0)