diff --git a/setup.sh b/setup.sh new file mode 100644 index 0000000..22b1e2d --- /dev/null +++ b/setup.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +# Build the common module that both subsystems depend on +cd common +make + + +# Setup the server side of the system +cd ../server +pnpm install +pnpm build +#pnpm link file:../common/cjs +# add command to copy the systemd service file to the right location + + +# Setup the website for the system +cd ../web-svelte +pnpm install +#pnpm link file:../common/cjs +pnpm build +# add command to help setup nginx to serve the built files \ No newline at end of file