From 19aba18fcd8d8f303f10f1483b5d55f801a99e6b Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Wed, 5 Mar 2025 16:44:26 -0800 Subject: [PATCH 1/2] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 712b5f7..c6977b4 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,12 @@ connection_string = sqlite+aiosqlite:///packets.db ``` bash ./env/bin/python main.py ``` +Start the database connection. + +``` bash +./env/bin/python startdb.py +``` + Now you can hit http://localhost:8081/ ***(if you did not change the web server port )*** You can specify the path to your `config.ini` file with the run command argument `--config` From 45ce4c17e568c1df1229957befc42f6202936153 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Wed, 5 Mar 2025 16:45:26 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c6977b4..6a44375 100644 --- a/README.md +++ b/README.md @@ -58,15 +58,15 @@ connection_string = sqlite+aiosqlite:///packets.db ``` ## Running Meshview - -``` bash -./env/bin/python main.py -``` Start the database connection. - ``` bash ./env/bin/python startdb.py ``` +Start the web server. +``` bash +./env/bin/python main.py +``` + Now you can hit http://localhost:8081/ ***(if you did not change the web server port )***