2
0
mirror of https://github.com/offen/website.git synced 2024-10-18 12:10:25 +02:00

Merge pull request #11 from offen/auditorium

Scaffold auditorium app
This commit is contained in:
Frederik Ring 2019-05-21 17:01:02 +02:00 committed by GitHub
commit 7455b24efd
2 changed files with 34 additions and 0 deletions

View File

@ -77,6 +77,26 @@ jobs:
name: Run tests
command: npm test
auditorium:
docker:
- image: circleci/node:10-browsers
working_directory: ~/offen/auditorium
steps:
- checkout:
path: ~/offen
- restore_cache:
key: offen-auditorium-{{ checksum "package.json" }}
- run:
name: Install dependencies
command: npm install
- save_cache:
paths:
- ~/offen/auditorium/node_modules
key: offen-auditorium-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
workflows:
version: 2
build_and_test:
@ -84,3 +104,4 @@ workflows:
- server
- vault
- script
- auditorium

View File

@ -45,3 +45,16 @@ script:
- 9966:9966
environment:
- VAULT_HOST=https://local.offen.dev:9977
auditorium:
image: timbru31/node-chrome:slim
working_dir: /auditorium
volumes:
- ./auditorium:/auditorium
- ./local.offen.dev.pem:/auditorium/local.offen.dev.pem
- ./local.offen.dev-key.pem:/auditorium/local.offen.dev-key.pem
command: npm start -- --port 9955
ports:
- 9955:9955
environment:
- VAULT_HOST=https://local.offen.dev:9977