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.
This commit is contained in:
parent
611d7f24f8
commit
0b73b4aa47
12 changed files with 777 additions and 44 deletions
20
backend/build.sh
Executable file
20
backend/build.sh
Executable file
|
@ -0,0 +1,20 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue