v1.1.3: default server 0.0.0.0:80 + row-level clustering + filter UI + dataset selector
This commit is contained in:
+2
-2
@@ -1,6 +1,6 @@
|
||||
server:
|
||||
host: 127.0.0.1
|
||||
port: 8000
|
||||
host: 0.0.0.0
|
||||
port: 80
|
||||
debug: false
|
||||
data:
|
||||
schema_strict: false
|
||||
|
||||
+2
-2
@@ -10,8 +10,8 @@ class Config(BaseModel):
|
||||
"""Typed configuration for TianXuan."""
|
||||
|
||||
class Server(BaseModel):
|
||||
host: str = '127.0.0.1'
|
||||
port: int = 8000
|
||||
host: str = '0.0.0.0'
|
||||
port: int = 80
|
||||
debug: bool = False
|
||||
|
||||
class Data(BaseModel):
|
||||
|
||||
Reference in New Issue
Block a user