diff options
author | xengineering <mail2xengineering@protonmail.com> | 2021-02-11 17:37:58 +0100 |
---|---|---|
committer | xengineering <mail2xengineering@protonmail.com> | 2021-02-11 17:37:58 +0100 |
commit | f830274cb0c4f1efec2313f72007741957b86e76 (patch) | |
tree | 19aa8036db3f955d48e97b612881fede83966227 /Makefile | |
parent | bc6b03ab29703dfff857b63727657ca3127eb381 (diff) | |
download | web-template-f830274cb0c4f1efec2313f72007741957b86e76.tar web-template-f830274cb0c4f1efec2313f72007741957b86e76.tar.zst web-template-f830274cb0c4f1efec2313f72007741957b86e76.zip |
Implement Framework Installation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2,10 +2,8 @@ all: - mkdir -p systemd/build - python3 manage.py build_systemd_files - mkdir -p flask/build - python3 manage.py build_flask_files + python3 manage.py build_systemd_file + python3 manage.py build_framework clean: rm -rf systemd/build @@ -13,9 +11,11 @@ clean: install: all python3 manage.py install_webroot - #find systemd/build -type f -exec sudo install -Dm 644 "{}" "/etc/systemd/system" \; + python3 manage.py install_framework + python3 manage.py install_systemd_file uninstall: python3 manage.py uninstall_webroot - #python3 manage.py uninstall_systemd_files + python3 manage.py uninstall_framework + python3 manage.py uninstall_systemd_file |