add-cuddle #2

Merged
kjuulh merged 3 commits from add-cuddle into poc 2022-09-12 22:26:32 +02:00
4 changed files with 16 additions and 1 deletions

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" ]