mirageco commited on
Commit
676c9ab
·
1 Parent(s): 166badb

fix: load .env config and update frontend proxy

Browse files
Files changed (3) hide show
  1. backend/app/asgi.py +4 -0
  2. backend/uv.lock +0 -0
  3. frontend/package.json +1 -1
backend/app/asgi.py CHANGED
@@ -2,6 +2,10 @@
2
  ASGI entry point for the Open Greek Financial LLM Leaderboard API.
3
  """
4
  import os
 
 
 
 
5
  import uvicorn
6
  import logging
7
  import logging.config
 
2
  ASGI entry point for the Open Greek Financial LLM Leaderboard API.
3
  """
4
  import os
5
+ from dotenv import load_dotenv
6
+
7
+ load_dotenv()
8
+
9
  import uvicorn
10
  import logging
11
  import logging.config
backend/uv.lock CHANGED
The diff for this file is too large to render. See raw diff
 
frontend/package.json CHANGED
@@ -51,5 +51,5 @@
51
  "last 1 safari version"
52
  ]
53
  },
54
- "proxy": "http://backend:8000"
55
  }
 
51
  "last 1 safari version"
52
  ]
53
  },
54
+ "proxy": "http://localhost:8000"
55
  }