This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
notes2web/Makefile

13 lines
314 B
Makefile
Raw Normal View History

2021-04-30 21:55:13 +01:00
install:
2021-06-29 14:35:21 +01:00
cp notes2web.py /usr/local/bin
2021-08-19 14:44:41 +01:00
pip3 install -r requirements.txt
2021-04-30 21:57:49 +01:00
mkdir -p /opt/notes2web
cp -r templates /opt/notes2web
cp styles.css /opt/notes2web
2021-08-19 14:43:42 +01:00
cp fuse.js /opt/notes2web
cp search.js /opt/notes2web
2021-12-22 21:16:09 +00:00
cp toc_search.js /opt/notes2web
2021-04-30 21:55:13 +01:00
2021-04-30 22:01:08 +01:00
uninstall:
2021-06-29 14:35:21 +01:00
rm -rf /usr/local/bin/notes2web.py /opt/notes2web