first commit

This commit is contained in:
orohi
2026-07-25 00:37:09 +03:00
commit 3ca7f9f7cc
35 changed files with 2478 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
# Fallback, если Dokploy выбрал Nixpacks вместо Docker/Compose
providers = ["python"]
[variables]
NIXPACKS_PYTHON_VERSION = "3.12"
[phases.setup]
nixPkgs = ["python312", "gcc"]
[phases.install]
cmds = ["python -m pip install --upgrade pip", "pip install -r app/requirements.txt"]
[start]
cmd = "cd app && uvicorn main:app --host 0.0.0.0 --port 8000"