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

scaffold dummy KMS app

This commit is contained in:
Frederik Ring 2019-05-30 12:49:29 +02:00
parent 62ffd65f08
commit 3efb4187ac
2 changed files with 97 additions and 57 deletions

View File

@ -1,6 +1,26 @@
version: 2 version: 2
jobs: jobs:
kms:
docker:
- image: circleci/golang:1.12
working_directory: ~/offen/kms
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-kms-{{ checksum "go.mod" }}
- run:
name: Download modules
command: go mod download
- save_cache:
paths:
- /go/pkg/mod
key: offen-kms-{{ checksum "go.mod" }}
- run:
name: Run tests
command: make test-ci
server: server:
docker: docker:
- image: circleci/golang:1.12 - image: circleci/golang:1.12
@ -122,6 +142,7 @@ workflows:
build_and_test: build_and_test:
jobs: jobs:
- server - server
- kms
- vault - vault
- script - script
- auditorium - auditorium

View File

@ -1,4 +1,21 @@
server: version: '3'
services:
kms:
image: golang:1.12
working_dir: /kms
volumes:
- ./kms:/kms
- ./local.offen.dev.pem:/kms/local.offen.dev.pem
- ./local.offen.dev-key.pem:/kms/local.offen.dev-key.pem
- $GOPATH/pkg/mod:/go/pkg/mod
environment:
- GOPATH=/go
ports:
- 8081:8081
command: go run cmd/kms/main.go -origin https://local.offen.dev:9977 -port 8081
server:
image: golang:1.12 image: golang:1.12
working_dir: /server working_dir: /server
volumes: volumes:
@ -11,16 +28,18 @@ server:
- POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable - POSTGRES_CONNECTION_STRING=postgres://postgres:develop@database:5432/postgres?sslmode=disable
ports: ports:
- 8080:8080 - 8080:8080
command: go run cmd/server/main.go -origin https://local.offen.dev:9977 -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.dev-key.pem -cert local.offen.dev.pem command: go run cmd/server/main.go -origin https://local.offen.dev:9977 -conn postgres://postgres:develop@database:5432/postgres?sslmode=disable -key local.offen.dev-key.pem -cert local.offen.dev.pem -level debug
links: links:
- database - database
depends_on:
- kms
database: database:
image: postgres:11.2 image: postgres:11.2
environment: environment:
- POSTGRES_PASSWORD=develop - POSTGRES_PASSWORD=develop
vault: vault:
image: timbru31/node-chrome:slim image: timbru31/node-chrome:slim
working_dir: /offen/vault working_dir: /offen/vault
volumes: volumes:
@ -34,7 +53,7 @@ vault:
- SERVER_HOST=https://local.offen.dev:8080 - SERVER_HOST=https://local.offen.dev:8080
- AUDITORIUM_HOST=https://local.offen.dev:9955 - AUDITORIUM_HOST=https://local.offen.dev:9955
script: script:
image: timbru31/node-chrome:slim image: timbru31/node-chrome:slim
working_dir: /offen/script working_dir: /offen/script
volumes: volumes:
@ -47,7 +66,7 @@ script:
environment: environment:
- VAULT_HOST=https://local.offen.dev:9977 - VAULT_HOST=https://local.offen.dev:9977
auditorium: auditorium:
image: timbru31/node-chrome:slim image: timbru31/node-chrome:slim
working_dir: /offen/auditorium working_dir: /offen/auditorium
volumes: volumes: