mirror of
https://github.com/offen/website.git
synced 2024-11-22 09:00:28 +01:00
Merge pull request #13 from offen/shared-packages
Add basic code sharing setup between javascript apps
This commit is contained in:
commit
72d73cad01
@ -76,6 +76,9 @@ jobs:
|
|||||||
- run:
|
- run:
|
||||||
name: Run tests
|
name: Run tests
|
||||||
command: npm test
|
command: npm test
|
||||||
|
- run:
|
||||||
|
name: Bundle
|
||||||
|
command: NODE_ENV=production npm run build
|
||||||
|
|
||||||
auditorium:
|
auditorium:
|
||||||
docker:
|
docker:
|
||||||
|
@ -10,6 +10,6 @@ insert_final_newline = true
|
|||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
|
|
||||||
[{*.js,*.yml,*.md,Gopkg.toml}]
|
[{*.js,*.yml,*.md,Gopkg.toml,package.json}]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
@ -22,11 +22,11 @@ database:
|
|||||||
|
|
||||||
vault:
|
vault:
|
||||||
image: timbru31/node-chrome:slim
|
image: timbru31/node-chrome:slim
|
||||||
working_dir: /vault
|
working_dir: /offen/vault
|
||||||
volumes:
|
volumes:
|
||||||
- ./vault:/vault
|
- .:/offen
|
||||||
- ./local.offen.dev.pem:/vault/local.offen.dev.pem
|
- ./local.offen.dev.pem:/offen/vault/local.offen.dev.pem
|
||||||
- ./local.offen.dev-key.pem:/vault/local.offen.dev-key.pem
|
- ./local.offen.dev-key.pem:/offen/vault/local.offen.dev-key.pem
|
||||||
command: npm start -- --port 9977
|
command: npm start -- --port 9977
|
||||||
ports:
|
ports:
|
||||||
- 9977:9977
|
- 9977:9977
|
||||||
@ -36,11 +36,11 @@ vault:
|
|||||||
|
|
||||||
script:
|
script:
|
||||||
image: timbru31/node-chrome:slim
|
image: timbru31/node-chrome:slim
|
||||||
working_dir: /script
|
working_dir: /offen/script
|
||||||
volumes:
|
volumes:
|
||||||
- ./script:/script
|
- .:/offen
|
||||||
- ./local.offen.dev.pem:/script/local.offen.dev.pem
|
- ./local.offen.dev.pem:/offen/script/local.offen.dev.pem
|
||||||
- ./local.offen.dev-key.pem:/script/local.offen.dev-key.pem
|
- ./local.offen.dev-key.pem:/offen/script/local.offen.dev-key.pem
|
||||||
command: npm start -- --port 9966
|
command: npm start -- --port 9966
|
||||||
ports:
|
ports:
|
||||||
- 9966:9966
|
- 9966:9966
|
||||||
@ -49,11 +49,11 @@ script:
|
|||||||
|
|
||||||
auditorium:
|
auditorium:
|
||||||
image: timbru31/node-chrome:slim
|
image: timbru31/node-chrome:slim
|
||||||
working_dir: /auditorium
|
working_dir: /offen/auditorium
|
||||||
volumes:
|
volumes:
|
||||||
- ./auditorium:/auditorium
|
- .:/offen
|
||||||
- ./local.offen.dev.pem:/auditorium/local.offen.dev.pem
|
- ./local.offen.dev.pem:/offen/auditorium/local.offen.dev.pem
|
||||||
- ./local.offen.dev-key.pem:/auditorium/local.offen.dev-key.pem
|
- ./local.offen.dev-key.pem:/offen/auditorium/local.offen.dev-key.pem
|
||||||
command: npm start -- --port 9955
|
command: npm start -- --port 9955
|
||||||
ports:
|
ports:
|
||||||
- 9955:9955
|
- 9955:9955
|
||||||
|
Loading…
Reference in New Issue
Block a user