File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ application:
44 # 🔌 Backend API (Node.js + Express)
55 - name : express
66 image : ghcr.io/stellarstack/stellar-gemini-ai-chatapp-backend:v0.1
7- path : /
7+ path : /v1
88 servicePorts :
99 - 3030
1010 vars :
11- MONGO_URL :
" mongodb+srv ://stellarstack:[email protected] . mongodb.net/?retryWrites=true&w=majority&appName=ChatAI " 12- MONGO_USER : " stellarstack "
13- MONGO_PASS : " tIgbeSEWmC81t0M0 "
11+ MONGO_URL : " mongodb://admin:T9m!eR7q@vX2$zLp@ mongodb.pod:27017/store "
12+ MONGO_USER : " admin "
13+ MONGO_PASS : " T9m!eR7q@vX2$zLp "
1414 GEMINI_API_KEY : " AIzaSyAcEU_szG5LYtiuzHJCUia3RB9oGbPUFZg"
1515 CLIENT_API_KEY : " AIzaSyDokqxtMSRDry1ZEltMa4kJov03pMNO5sY"
1616 GEO_API_KEY : " b8f1629240ce45a992c6faf6b2278e18"
@@ -45,9 +45,9 @@ application:
4545 servicePorts :
4646 - 27017
4747 vars :
48- MONGO_INITDB_ROOT_USERNAME : " stellarstack "
49- MONGO_INITDB_ROOT_PASSWORD : " tIgbeSEWmC81t0M0 "
50- MONGO_INITDB_DATABASE : " ChatAI "
48+ MONGO_INITDB_ROOT_USERNAME : " admin "
49+ MONGO_INITDB_ROOT_PASSWORD : " T9m!eR7q@vX2$zLp "
50+ MONGO_INITDB_DATABASE : " store "
5151 volumes :
5252 - name : " mongo-data"
5353 size : " 1Gi"
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ app.use(cros(crosOption));
2727import publicRoutes from "./router/public.js" ;
2828import authRoutes from "./router/auth.js" ;
2929
30- app . use ( "/gemini" , publicRoutes ) ;
30+ app . use ( "/v1/ gemini" , publicRoutes ) ;
3131app . use ( authRoutes ) ;
3232
3333// Serve static files from the React app build at /chatapp
You can’t perform that action at this time.
0 commit comments