hermes/backend/build.sh
greysoh 0b73b4aa47
feature: Adds backend system and basic API.
This adds the backend API, as well as backend infrastructure, including
autostarting and basic communication between the Goroutine + Application.
2024-12-23 15:52:16 -05:00

20 lines
239 B
Bash
Executable file

#!/usr/bin/env bash
pushd sshbackend
go build .
strip sshbackend
popd
pushd dummybackend
go build .
strip dummybackend
popd
pushd externalbackendlauncher
go build .
strip externalbackendlauncher
popd
pushd api
go build .
strip api
popd