octomode/Makefile

10 lines
233 B
Makefile
Raw Normal View History

SHELL := /bin/bash
2022-01-12 21:27:06 +01:00
default: run
setup:
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
2022-01-12 21:27:06 +01:00
run:
@/bin/bash -c "set -a && source config.env && set +a && .venv/bin/python octomode.py"