diff options
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | example_settings.json | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -27,6 +27,8 @@ cd web-template nano settings.json # tweak to your needs make all make install +sudo systemctl start <project_name> # default <project_name> is webtemplate +curl http://localhost:<framework_port>/ # default <framework_port> is 28472 ``` **Make sure to not edit settings.json until you uninstalled the project!** @@ -34,6 +36,7 @@ make install You can remove it like this: ``` +sudo systemctl stop <project_name> # default <project_name> is webtemplate make uninstall make clean ``` diff --git a/example_settings.json b/example_settings.json index ec9da38..8e2f7ac 100644 --- a/example_settings.json +++ b/example_settings.json @@ -6,7 +6,7 @@ "webroot":"/srv/http", "framework":"flask", - "framework_port":"3009", + "framework_port":"28472", "framework_bind":"127.0.0.1", "user":"http", "group":"http" |