Files
auto_dj/devbox.json
T
Daniil Barodkin 5cdf3e66c7 create upload bot
2026-07-11 19:19:07 +03:00

19 lines
313 B
JSON

{
"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"
}
}
}