diff options
-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. |