mirror of
https://github.com/rennf93/roboco.git
synced 2026-08-03 07:23:24 +02:00
fix(.gitignore): anchor Python build artifacts; recover panel/src/lib (28 files)
The 'lib/' rule (intended for Python virtualenv at repo root) was matching panel/src/lib/, hiding the entire panel API client + utility tree from git. Anchored Python build-artifact rules to the repo root with a leading slash so they only match at the top level. Adds 28 panel/src/lib files that should have been tracked from day one.
This commit is contained in:
+2
-2
@@ -66,9 +66,9 @@ class Settings(BaseSettings):
|
||||
Note: 0.0.0.0 is only valid for binding, not connecting - use 127.0.0.1 instead.
|
||||
"""
|
||||
if self.api_url:
|
||||
return f"{self.api_url.rstrip('/')}/api/v1"
|
||||
return f"{self.api_url.rstrip('/')}/api"
|
||||
connect_host = "127.0.0.1" if self.host == "0.0.0.0" else self.host # nosec B104
|
||||
return f"http://{connect_host}:{self.port}/api/v1"
|
||||
return f"http://{connect_host}:{self.port}/api"
|
||||
|
||||
# ==========================================================================
|
||||
# Database
|
||||
|
||||
Reference in New Issue
Block a user