diff options
| author | TrainDoctor <traindoctor@protonmail.com> | 2022-08-13 20:14:43 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-13 20:14:43 -0700 |
| commit | af817b6b5f530a1a062cee708043dc3a41155aba (patch) | |
| tree | e724ac2b99f556e66ebe42127b0c0f00b0cfbeef /backend/src | |
| parent | 41103641bd319468a06558ca97aef596a78d9f34 (diff) | |
| download | decky-bazzite-buddy-af817b6b5f530a1a062cee708043dc3a41155aba.tar.gz decky-bazzite-buddy-af817b6b5f530a1a062cee708043dc3a41155aba.zip | |
Merge Dockerfile and example files for backend support example (#7)
* Add template dockerfile for testing
* Switch to holo-docker image
* Add default entrypoint.sh
* Updated dockerfile to reflect CI/CD on database
* Add template makefile, main.c
* Adjusted entrypoint.sh to actually build binary
* Made entrypoint.sh executable
* Big README update and comments in Dockerfile
Diffstat (limited to 'backend/src')
| -rw-r--r-- | backend/src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/backend/src/main.c b/backend/src/main.c new file mode 100644 index 0000000..b3b8fed --- /dev/null +++ b/backend/src/main.c @@ -0,0 +1,5 @@ +#include <stdio.h> +int main() { + printf("Hello World\n"); + return 0; +}
\ No newline at end of file |
