diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2021-11-27 16:17:05 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-04-24 01:33:04 +0300 |
commit | c412bf2ee0a3fbf9032fc32a26837d4fbc7585c5 (patch) | |
tree | 5cca6bcab79331ad82cab4219c7692b9dd4eea21 /Makefile |
initial public
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..bb24298 --- /dev/null +++ b/Makefile @@ -0,0 +1,46 @@ +INSTALL = /usr/bin/env install +GLOBAL_PREFIX = /usr/local + +ifeq ($(shell id -u), 0) + USER_PREFIX = /usr/local +else + USER_PREFIX = $(HOME)/.local +endif + +PROGRAMS = admin_bot inverter_bot pump_bot sensors_bot +PROGRAMS += inverter_mqtt_receiver inverter_mqtt_sender +PROGRAMS += sensors_mqtt_receiver sensors_mqtt_sender +PROGRAMS += si7021d +PROGRAMS += gpiorelayd +PROGRAMS += gpiosensord +#PROGRAMS += web_api + +all: + @echo "Supported commands:" + @echo + @echo " \033[1mmake install\033[0m symlink all programs to $(USER_PREFIX)" + @echo " \033[1mmake install-tools\033[0m copy admin scripts to /usr/local/bin" + @echo " \033[1mmake venv\033[0m create virtualenv and install dependencies" + @echo " \033[1mmake web-api-dev\033[0m launch web api development server" + @echo + +venv: + python3 -m venv venv + . ./venv/bin/activate && pip3 install -r requirements.txt + +web-api-dev: + . ./venv/bin/activate && FLASK_ENV=development python3 src/web_api.py + +install: check-root + for name in @(PROGRAMS); do ln -s src/${name}.py $(USER_PREFIX)/bin/$name; done + +install-tools: check-root + $(INSTALL) tools/clickhouse-backup.sh $(GLOBAL_PREFIX)/bin + chmod +x $(GLOBAL_PREFIX)/bin/clickhouse-backup.sh + +check-root: + ifneq ($(shell id -u), 0) + $(error "You must be root.") + endif + +.PHONY: all install install-local install-tools venv web-api-dev check-root
\ No newline at end of file |