diff options
author | xengineering <me@xengineering.eu> | 2022-05-23 10:27:04 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-23 10:27:04 +0200 |
commit | 99ea58afb5a764255ac90d04731a954e33a9aaa3 (patch) | |
tree | 89aa4fb6a6f89992cab55944aad1dae33a9491bc | |
parent | 5652972e5018f6eee46a6216dbcbd5b84cc595f2 (diff) | |
download | picontrol-main.tar picontrol-main.tar.zst picontrol-main.zip |
-rw-r--r-- | README.md | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -9,13 +9,14 @@ A small Web Application to shutdown or reboot your Raspberry Pi. ### Preparation -Make sure to open your firewall on port 8080. **If** you use UFW you can do it like this: +Make sure to open your firewall on port 8080. **If** you use UFW you can do it +like this: ```bash sudo ufw allow 8080 ``` -Install python3, Flask and waitress. python3 installation depends on your system. -With pip you can install Flask and waitress very easily: +Install python3, Flask and waitress. python3 installation depends on your +system. With pip you can install Flask and waitress very easily: ```bash sudo pip3 install Flask waitress ``` @@ -32,10 +33,12 @@ With pip you can install Flask and waitress very easily: ### How to remove ```bash sudo systemctl disable --now picontrol - sudo make uninstall # just works from picontrol directory (the git repository you cloned) + sudo make uninstall # just works from picontrol directory + # (the git repository you cloned) sudo userdel picontrol ``` ### Access the Web Page -You just have to visit http://pi_IP_or_hostname:8080 in the browser of your choice. +You just have to visit http://hostname:8080 in the browser of your +choice. |