1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Fixed issue with first setup, GH-94

This commit is contained in:
krateng 2021-12-16 06:19:26 +01:00
parent 3d573b10f9
commit 7774d9a936
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash #!/usr/bin/env bash
apk add python3 python3-dev gcc libxml2-dev libxslt-dev py3-pip libc-dev linux-headers apk add python3 python3-dev gcc libxml2-dev libxslt-dev py3-pip libc-dev linux-headers
pip3 install psutil pip3 install psutil wheel
pip3 install malojaserver pip3 install malojaserver

View File

@ -5,7 +5,7 @@ author = {
"email":"maloja@dev.krateng.ch", "email":"maloja@dev.krateng.ch",
"github": "krateng" "github": "krateng"
} }
version = 2,12,19 version = 2,12,20
versionstr = ".".join(str(n) for n in version) versionstr = ".".join(str(n) for n in version)
links = { links = {
"pypi":"malojaserver", "pypi":"malojaserver",

View File

@ -169,7 +169,7 @@ config(
}, },
regular={ regular={
"autostart": False, "autostart": False,
"offset": get_settings("TIMEZONE") "offset": get_settings("TIMEZONE") or 0
} }
) )