mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Aaaaand more bugfixing
This commit is contained in:
parent
0f5ccd4645
commit
40648b66f3
@ -5,7 +5,7 @@ author = {
|
|||||||
"email":"maloja@dev.krateng.ch",
|
"email":"maloja@dev.krateng.ch",
|
||||||
"github": "krateng"
|
"github": "krateng"
|
||||||
}
|
}
|
||||||
version = 2,13,2
|
version = 2,13,3
|
||||||
versionstr = ".".join(str(n) for n in version)
|
versionstr = ".".join(str(n) for n in version)
|
||||||
links = {
|
links = {
|
||||||
"pypi":"malojaserver",
|
"pypi":"malojaserver",
|
||||||
|
@ -47,7 +47,7 @@ def start():
|
|||||||
sp = subprocess.Popen(["python3","-m","maloja.proccontrol.supervisor"],stdout=subprocess.DEVNULL,stderr=subprocess.DEVNULL)
|
sp = subprocess.Popen(["python3","-m","maloja.proccontrol.supervisor"],stdout=subprocess.DEVNULL,stderr=subprocess.DEVNULL)
|
||||||
print(col["green"]("Maloja started!"))
|
print(col["green"]("Maloja started!"))
|
||||||
|
|
||||||
port = malojaconfig["PORT"]
|
port = globalconf.malojaconfig["PORT"]
|
||||||
|
|
||||||
print("Visit your server address (Port " + str(port) + ") to see your web interface. Visit /admin_setup to get started.")
|
print("Visit your server address (Port " + str(port) + ") to see your web interface. Visit /admin_setup to get started.")
|
||||||
print("If you're installing this on your local machine, these links should get you there:")
|
print("If you're installing this on your local machine, these links should get you there:")
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
from ..globalconf import malojaconfig
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import setproctitle
|
import setproctitle
|
||||||
import signal
|
import signal
|
||||||
from doreah.logging import log
|
from doreah.logging import log
|
||||||
|
|
||||||
from .globalconf import malojaconfig
|
|
||||||
from .control import getInstance
|
from .control import getInstance
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user