6 lines
148 B
Python
6 lines
148 B
Python
from waitress import serve
|
|
from civicfix.wsgi import application
|
|
|
|
if __name__ == "__main__":
|
|
serve(application, host="10.1.192.152", port=8000)
|