Skip to content

Commit

Permalink
add client_url config paramenter (#1850)
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhlongviolin1 authored Sep 27, 2024
1 parent a30ce0f commit 5134bb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions taipy/gui/_default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"change_delay": None,
"chart_dark_template": None,
"base_url": "/",
"client_url": "http://localhost:5000",
"dark_mode": True,
"dark_theme": None,
"debug": False,
Expand Down
2 changes: 2 additions & 0 deletions taipy/gui/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"change_delay",
"chart_dark_template",
"base_url",
"client_url",
"dark_mode",
"dark_theme",
"data_url_max_size",
Expand Down Expand Up @@ -106,6 +107,7 @@
"change_delay": t.Optional[int],
"chart_dark_template": t.Optional[t.Dict[str, t.Any]],
"base_url": t.Optional[str],
"client_url": str,
"dark_mode": bool,
"dark_theme": t.Optional[t.Dict[str, t.Any]],
"data_url_max_size": t.Optional[int],
Expand Down

0 comments on commit 5134bb4

Please sign in to comment.