diff --git a/stop.sh b/stop.sh new file mode 100644 index 0000000..28389b8 --- /dev/null +++ b/stop.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Date: 2023-03-07 +# Developer: Hyperling +# Purpose: Turn off the project since the subprocesses run as forks. + +## Stop all services. ## + +# Kill frontend. +# killall `pwd`/index.tsx >stop.log 2>&1 + +# Kill backend +killall `pwd`/server.js >stop.log 2>&1 + diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..bdc443c --- /dev/null +++ b/test.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Date: 2023-03-07 +# Developer: Hyperling +# Purpose: Create a test user and some test data. + +## Create User ## + +# curl POST test_user test_password etc etc + +## Create Entries ## + +# curl POST test_user 2023-03-07 "Mangoes and rice" FALSE "Yummy!" +