aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xapi/index.js2
-rwxr-xr-xbin/ak22
2 files changed, 19 insertions, 5 deletions
diff --git a/api/index.js b/api/index.js
index f22d448..6fd2066 100755
--- a/api/index.js
+++ b/api/index.js
@@ -1,5 +1,6 @@
const http = require("node:http");
+// Route functions
const welcomeMessage = require("./routes/default/index.js");
const getAKNSKey = require("./routes/getAKNSKey/index.js");
const getAKNSKeyFromBase = require("./routes/getAKNSKeyFromBase/index.js");
@@ -15,6 +16,7 @@ const getSlatest = require('./routes/getSLatest/index.js');
const getRemoteNodeInfo = require('./routes/getRemoteNodeInfo/index.js');
const getRemotePeers = require('./routes/getRemotePeers/index.js');
+// Libraries
const akLogMessage = require('./lib/akLogMessage');
const checkIfAllowedIP = require('./lib/checkIfAllowedIP/index.js');
const storeIncomingIP = require("./lib/storeIncomingIP/index.js");
diff --git a/bin/ak b/bin/ak
index 17cf351..ef69b2e 100755
--- a/bin/ak
+++ b/bin/ak
@@ -17,7 +17,7 @@
### You should have received a copy of the GNU General Public License
### along with this program. If not, see <http://www.gnu.org/licenses/>.
###
-export AK_DEBUG="yes"
+export AK_DEBUG="no"
export AK_DEBUG_IRC="no"
##
## Arching Kaos CLI tool is the main executable script to use for exploring,
@@ -29,14 +29,16 @@ export AK_DEBUG_IRC="no"
##
## Run with no arguments to see available commands
##
-## -h, --help Prints this help message
+## -h, --help Prints this help message.
##
-## -s, --shell Starts an interactive shell
+## -s, --shell Starts an interactive shell.
##
## -m, --module [module] Run a specified module. If no module provided
## the list of available modules will be printed.
##
-## -f, --function [function] Get the list of available functions
+## -f, --function [function] Get the list of available functions.
+##
+## -v Print all log messages.
##
## [command] [args] Run a command. If none provided a list of
## commands will be printed.
@@ -56,6 +58,16 @@ then
export AK_DEBUG="no"
shift
fi
+if [ "$1" == "-vn" ]
+then
+ export AK_DEBUG="no"
+ shift
+fi
+if [ "$1" == "-v" ]
+then
+ export AK_DEBUG="yes"
+ shift
+fi
if [ $# -eq 0 ]
then
@@ -187,7 +199,7 @@ else
fi
counter=$(($counter + 1))
done
- _ak_usage
+ # _ak_usage err
find $AK_BINDIR | while read available
do
echo $(basename $available) |\