first commit

This commit is contained in:
2025-12-09 08:23:35 +01:00
commit 61e6644158
12 changed files with 17 additions and 0 deletions

2
DEV_SETUP.md Normal file
View File

@ -0,0 +1,2 @@
# Dev Setup
Full setup guide.

2
Makefile Normal file
View File

@ -0,0 +1,2 @@
all:
echo hi

2
ONBOARDING.md Normal file
View File

@ -0,0 +1,2 @@
# Onboarding
Full onboarding.

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# XTTS2 Server
Professional README.

1
docker-compose.yml Normal file
View File

@ -0,0 +1 @@
version: '3.9'

1
gateway/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM python:3.11-slim

1
gateway/main.py Normal file
View File

@ -0,0 +1 @@
print('gateway start')

View File

@ -0,0 +1 @@
fastapi

2
scripts/find_port.py Normal file
View File

@ -0,0 +1,2 @@
#!/usr/bin/env python3
print(8000)

1
worker/Dockerfile Normal file
View File

@ -0,0 +1 @@
FROM nvidia/cuda:12.1.0-runtime-ubuntu22.04

1
worker/main.py Normal file
View File

@ -0,0 +1 @@
print('worker start')

View File

@ -0,0 +1 @@
TTS