mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 09:49:13 +00:00
feat(web): show more app info (#1145)
* feat(web): add app info * database type used * application binary path * config path * feat(web): label colors light theme * feat(web): truncate long fields
This commit is contained in:
parent
2eed1b3e90
commit
d3ca3e59c0
4 changed files with 41 additions and 12 deletions
3
web/src/types/Config.d.ts
vendored
3
web/src/types/Config.d.ts
vendored
|
@ -6,6 +6,9 @@
|
|||
type LogLevel = "DEBUG" | "INFO" | "WARN" | "ERROR" | "TRACE";
|
||||
|
||||
interface Config {
|
||||
config_dir: string;
|
||||
application: string;
|
||||
database: string;
|
||||
host: string;
|
||||
port: number;
|
||||
log_level: LogLevel;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue