Add poc #3

Merged
kjuulh merged 2 commits from poc into main 2022-09-12 22:27:04 +02:00
4 changed files with 16 additions and 1 deletions
Showing only changes of commit 2aebcc647d - Show all commits

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.cuddle/

7
cuddle.yaml Normal file
View File

@ -0,0 +1,7 @@
# yaml-language-server: $schema=https://git.front.kjuulh.io/kjuulh/cuddle/raw/branch/main/schemas/base.json
base: "git@git.front.kjuulh.io:kjuulh/cuddle-go-plan.git"
vars:
service: "kraken"
deployments: "git@git.front.kjuulh.io:kjuulh/deployments.git"

View File

@ -2,7 +2,7 @@
## POC:
- [ ] Add cuddle
- [x] Add cuddle
- [x] Create storage mechanism
- [x] Pull repository into storage
- [x] Create test action to run on repository

View File

@ -0,0 +1,7 @@
FROM golang
COPY . .
RUN go build cmd/server/server.go
CMD [ "server", "start" ]