double-model / Makefile
goldendevuz's picture
2025.07.08/14:13
be61043
raw
history blame contribute delete
300 Bytes
init-env:
python3 -m venv env
i:
pip install --upgrade pip && pip install -r requirements.txt
run:
python app.py
build:
COMPOSE_BAKE=true docker compose build
up:
COMPOSE_BAKE=true docker compose up
stop:
docker compose stop
down:
docker compose down
bash:
docker exec -it aiobot bash