print local and remote app urls when app host is set to "0.0.0.0"

+ update app version in settings.py
This commit is contained in:
geoffrey45
2023-01-20 22:21:40 +03:00
parent 5dad45f188
commit 3dc9bc1f15
8 changed files with 790 additions and 650 deletions
+6
View File
@@ -20,6 +20,12 @@ CREATE TABLE IF NOT EXISTS favorites (
hash text not null,
type text not null
);
CREATE TABLE IF NOT EXISTS settings (
id integer PRIMARY KEY,
root_dirs text NOT NULL,
exclude_dirs text
)
"""
CREATE_APPDB_TABLES = """