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

use budo for vault development

This commit is contained in:
Frederik Ring 2019-04-20 08:06:06 -07:00
parent 1f8ede7cd9
commit b6ad760082
3 changed files with 9 additions and 7 deletions

View File

@ -39,7 +39,7 @@ jobs:
vault:
docker:
- image: circleci/node:10
- image: circleci/node:10-browsers
working_directory: ~/offen/vault
steps:
- checkout:
@ -55,7 +55,7 @@ jobs:
key: offen-vault-{{ checksum "package.json" }}
- run:
name: Run tests
command: npm test
command: npm test -- --allow-chrome-as-root
workflows:
version: 2

View File

@ -41,7 +41,8 @@ To work on the `vault` you will need to install `docker-compose`.
First, install the project's dependencies:
```
docker-compose run vault npm install
cd vault
npm install
```
Run the server:
@ -53,7 +54,8 @@ docker-compose up
Run the tests:
```
docker-compose run vault npm test
cd vault
npm test
```

View File

@ -19,10 +19,10 @@ database:
- POSTGRES_PASSWORD=develop
vault:
image: node:10-alpine
image: node:10
working_dir: /vault
volumes:
- ./vault:/vault
command: npm start
command: npm start -- --port 9977
ports:
- 3000:3000
- 9977:9977