Skip to content

Commit

Permalink
local_llms
Browse files Browse the repository at this point in the history
  • Loading branch information
rounak610 committed Oct 10, 2023
1 parent 648f530 commit 5734b8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ services:
NEXT_PUBLIC_API_BASE_URL: "/api"
networks:
- super_network
volumes:
- ./gui:/app
- /app/node_modules/
- /app/.next/
# volumes:
# - ./gui:/app
# - /app/node_modules/
# - /app/.next/
super__redis:
image: "redis/redis-stack-server:latest"
networks:
Expand Down
2 changes: 1 addition & 1 deletion gui/pages/api/apiConfig.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axios from 'axios';

const GITHUB_CLIENT_ID = process.env.GITHUB_CLIENT_ID;
const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:3000/api';
const API_BASE_URL = process.env.NEXT_PUBLIC_API_BASE_URL || 'http://localhost:8001';
const GOOGLE_ANALYTICS_MEASUREMENT_ID = process.env.GOOGLE_ANALYTICS_MEASUREMENT_ID;
const GOOGLE_ANALYTICS_API_SECRET = process.env.GOOGLE_ANALYTICS_API_SECRET;
const MIXPANEL_AUTH_ID = process.env.MIXPANEL_AUTH_ID
Expand Down

0 comments on commit 5734b8c

Please sign in to comment.