add-cuddle (#2)

Co-authored-by: kjuulh <contact@kjuulh.io>
Reviewed-on: kjuulh/kraken#2
This commit is contained in:
Kasper Juul Hermansen 2022-09-12 22:26:32 +02:00
parent 50228f0aff
commit 2aebcc647d
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" ]