mb
2 years ago
3 changed files with 24 additions and 10 deletions
@ -1,7 +1,14 @@ |
|||
SHELL := /bin/bash |
|||
|
|||
default: run |
|||
|
|||
setup: |
|||
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi |
|||
|
|||
run: |
|||
config: |
|||
@set -a |
|||
@source config.env |
|||
@set +a |
|||
|
|||
run: config |
|||
@.venv/bin/python octomode.py |
|||
|
@ -0,0 +1,4 @@ |
|||
OCTOMODE_PORTNUMBER=XXX |
|||
OCTOMODE_PAD_URL=XXX |
|||
OCTOMODE_PAD_API_URL=XXX |
|||
OCTOMODE_PAD_API_KEY=XXX |
Loading…
Reference in new issue