You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
488 B
Plaintext

2 years ago
#!/usr/bin/python3
2 years ago
from network.communication import Server
from utils.config.config import ServerConfig
config = ServerConfig()
server = Server(host=config.server_host, port=config.server_port, name=config.server_name, access_password=config.server_password,
2 years ago
access_username=config.server_access_username, jwt_secret=config.jwt_secret, version="v0.0.1alpha", database_file_path=config.database_file, logging_level=config.server_loglevel)
2 years ago
server.run()
2 years ago
# vi: ft=python