octomode/Makefile

15 lines
231 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
config:
@set -a
@source config.env
@set +a
run: config
2022-01-12 21:27:06 +01:00
@.venv/bin/python octomode.py