File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 33
44
55class Settings (BaseSettings ):
6- allowed_origins : str
7- allowed_hosts : str
8- host : str
9- port : int
10- reload_value : str
11- telex_webhook_url : str
6+ allowed_origins : str = "http://test"
7+ allowed_hosts : str = "test"
8+ host : str = "127.0.0.1"
9+ port : int = 8000
10+ reload_value : str = "true"
11+ telex_webhook_url : str = "https://example.com/telex"
1212 curl_command : str | None = "curl" # might require path/to/curl e.g. `/usr/bin/curl`
13- app_logo_url : str
14- app_url : str
15- target_url : str
16- background_color_hexcode : str
13+ app_logo_url : str = "https://example.com/logo.png"
14+ app_url : str = "https://example.com"
15+ target_url : str = "https://example.com/target"
16+ background_color_hexcode : str = "#FFFFFF"
1717
1818 model_config = SettingsConfigDict (env_file = ".env" )
1919
You can’t perform that action at this time.
0 commit comments