2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 09:00:28 +01:00

implement basic kms feature using symmecrypt

This commit is contained in:
Frederik Ring 2019-05-31 15:46:36 +02:00
parent 3efb4187ac
commit e708e3a97d
2 changed files with 4 additions and 1 deletions

View File

@ -17,6 +17,9 @@ jobs:
paths: paths:
- /go/pkg/mod - /go/pkg/mod
key: offen-kms-{{ checksum "go.mod" }} key: offen-kms-{{ checksum "go.mod" }}
- run:
name: Generate one-off key file
command: make bootstrap
- run: - run:
name: Run tests name: Run tests
command: make test-ci command: make test-ci

View File

@ -13,7 +13,7 @@ services:
- GOPATH=/go - GOPATH=/go
ports: ports:
- 8081:8081 - 8081:8081
command: go run cmd/kms/main.go -origin https://local.offen.dev:9977 -port 8081 command: go run cmd/kms/main.go -port 8081
server: server:
image: golang:1.12 image: golang:1.12