File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1+ # ----------------------------------
2+ # Integration Test Config
3+ # ----------------------------------
4+
5+ # Base URL
6+ MINDS_API_BASE_URL = <oyur base url>
7+
8+ # URL for the OpenAPI specification.
9+ MINDS_OPENAPI_SPEC_URL = <oyur base url>/openapi.json
10+
11+ # Authentication token, required
12+ MINDS_API_TOKEN = your_token
Original file line number Diff line number Diff line change 1717load_dotenv ()
1818
1919# --- API and Schema Configuration ---
20- MINDS_API_BASE_URL = os .getenv (
21- "MINDS_API_BASE_URL" , "https://minds-terabase.dev.mdb.ai"
22- ) #
20+ MINDS_API_BASE_URL = os .getenv ("MINDS_API_BASE_URL" ) #
2321MINDS_OPENAPI_SPEC_URL = os .getenv (
2422 "MINDS_OPENAPI_SPEC_URL" , f"{ MINDS_API_BASE_URL .strip ('/' )} /openapi.json"
2523)
26- AUTH_TOKEN = os .getenv ("MINDS_API_TOKEN" , "remove me when auth is implemented" )
24+ AUTH_TOKEN = os .getenv ("MINDS_API_TOKEN" )
2725
2826# --- DATASOURCE CONFIGURATIONS ---
2927DATASOURCE_CONFIGS = []
You can’t perform that action at this time.
0 commit comments