File size: 250 Bytes
0139e20
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from project_settings import project_path

log_directory = project_path / "server/train_model_server/logs"
log_directory.mkdir(parents=True, exist_ok=True)

port = 9527


if __name__ == "__main__":
    pass