create upload bot

This commit is contained in:
Daniil Barodkin
2026-07-11 19:19:07 +03:00
parent 80da6a1581
commit 5cdf3e66c7
12 changed files with 191 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"packages": [
"python@3.11",
"ffmpeg@latest"
],
"env": {
"VENV_DIR": ".venv"
},
"shell": {
"init_hook": [
"python -m venv $VENV_DIR",
"source $VENV_DIR/bin/activate",
"pip install -r requirements.txt"
],
"scripts": {
"start": "python bot.py"
}
}
}