asr / server /asr_server /settings.py
HoneyTian's picture
update
0139e20
raw
history blame
No virus
250 Bytes
#!/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