2018-06-12 21:45:50 +02:00
|
|
|
|
2018-07-11 22:06:06 +02:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
2018-06-12 21:45:50 +02:00
|
|
|
import sys
|
|
|
|
|
2018-07-11 22:06:06 +02:00
|
|
|
from matemat import parse_config_file
|
|
|
|
|
2018-06-12 21:45:50 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
# Those imports are actually needed, as they implicitly register pagelets.
|
|
|
|
# noinspection PyUnresolvedReferences
|
|
|
|
from matemat.webserver.pagelets import *
|
|
|
|
from matemat.webserver import MatematWebserver
|
|
|
|
|
2018-07-11 22:06:06 +02:00
|
|
|
# Use config file name from command line, if present
|
|
|
|
configfile: str = '/etc/matemat.conf'
|
2018-06-12 21:45:50 +02:00
|
|
|
if len(sys.argv) > 1:
|
2018-07-11 22:06:06 +02:00
|
|
|
configfile = sys.argv[1]
|
|
|
|
|
|
|
|
# Parse the config file
|
|
|
|
config: Dict[str, Any] = parse_config_file(configfile)
|
2018-06-12 21:45:50 +02:00
|
|
|
|
|
|
|
# Start the web server
|
2018-07-11 22:06:06 +02:00
|
|
|
MatematWebserver(**config).start()
|