diff --git a/Dockerfile b/Dockerfile index 0148729e..80cd9f3a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,4 +39,4 @@ COPY . /workspace EXPOSE 9871 9872 9873 9874 9880 -CMD ["python", "api_v3.py"] +CMD ["python", "webui.py"] diff --git a/test.py b/test.py deleted file mode 100644 index 8c810d42..00000000 --- a/test.py +++ /dev/null @@ -1,22 +0,0 @@ -import os - - -def get_voices_yaml(directory): - try: - with os.scandir(directory) as entries: - for entry in entries: - if entry.is_file(): - print(entry.path) - except FileNotFoundError: - print("Directory not found") - except PermissionError: - print("Permission denied") - except Exception as e: - print(f"An error occurred: {e}") - - -# Specify the path to the directory -directory_path = 'GPT_SoVITS/configs/voices' - -# Call the function -get_voices_yaml(directory_path)