You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/app/(app)/docs/i18n/pages-en/installation-en.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@
24
24
"envConfig": {
25
25
"title": "Configure Environment Variables",
26
26
"description": "Copy or create .env.local and fill in according to your actual environment:",
27
-
"note": "💡 For production environments, please change the database, Valkey, pgvector, and object storage to dedicated instances and keep credentials secure.",
27
+
"note": "💡 For production environments, please use Tencent COS for object storage and change the database, Valkey, and pgvector to dedicated instances and keep credentials secure.",
28
28
"example": "# Database & Cache\nDATABASE_URL=\"postgresql://postgres:123456@localhost:5432/deeptrans\"\nREDIS_URL=\"redis://valkey:6379\"\n\n# Authentication & Site Config\nAUTH_SECRET=\"Please generate a random string\"\nNEXTAUTH_URL=\"http://localhost:3000\"\nNODE_ENV=development\n\n# LLM / AI Services\nOPENAI_API_KEY=\"sk-xxxx\"\nOPENAI_BASE_URL=\"https://api.openai.com/v1\"\nOPENAI_API_MODEL=\"gpt-4o-mini\"\n\n# Object Storage: MinIO or Tencent COS\nSTORAGE_TYPE=minio\nSTORAGE_ENDPOINT=localhost\nSTORAGE_PORT=9000\nSTORAGE_USE_SSL=false\nSTORAGE_ACCESS_KEY=minioadmin\nSTORAGE_SECRET_KEY=minioadmin\nSTORAGE_BUCKET=deeptrans\n\n# Tencent COS example\n# STORAGE_TYPE=cos\n# COS_SECRET_ID=AKIDxxxxxxxx\n# COS_SECRET_KEY=xxxxxxxx\n# COS_BUCKET=deeptrans-1250000000\n# COS_REGION=ap-guangzhou\n\n# Other Services\nSTUDIO_HOST=localhost # Used for Traefik/HTTPS deployment\n\n# Optional: GitHub OAuth, SMTP, pgvector access info, etc."
29
29
},
30
30
"initDb": {
@@ -42,7 +42,7 @@
42
42
"step1": {
43
43
"title": "Start Dependency Services",
44
44
"description": "Recommended to use services from Docker Compose:",
45
-
"command": "docker compose up -d db valkey minio\n# If you need Traefik, append traefik"
45
+
"command": "docker compose up -d db valkey minio\n# Development uses MinIO locally. Production uses Tencent COS and does not start MinIO."
46
46
},
47
47
"step2": {
48
48
"title": "Start Next.js Application",
@@ -73,7 +73,7 @@
73
73
},
74
74
"step3": {
75
75
"title": "Start Main Services",
76
-
"command": "docker compose up -d traefik app app_worker db valkey minio",
76
+
"command": "docker compose up -d traefik app app_worker db valkey",
77
77
"note": "Traefik will map ports 80/443 to Studio. Prisma Studio can be started as needed."
0 commit comments