Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
build: Update global build configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Fellner committed Feb 13, 2017
1 parent e123acc commit 3b733f6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
16 changes: 9 additions & 7 deletions docker-compose.yaml
Expand Up @@ -4,30 +4,32 @@ tessellate-bundler:
APP_PORT: 3001
ports:
- 3001:3001
- 3002:3002
tessellate-fragment:
build: packages/tessellate-fragment
environment:
APP_PORT: 3002
APP_PORT: 3003
BUNDLE_SOURCE: http://tessellate-bundler:3001
ports:
- 3002:3002
- 3003:3003
- 3004:3004
links:
- tessellate-bundler
tessellate-viewer:
build: packages/tessellate-viewer
environment:
APP_PORT: 3003
FRAGMENT_SOURCE: http://tessellate-fragment:3002/fragment
APP_PORT: 3005
FRAGMENT_SOURCE: http://tessellate-fragment:3003/fragment
ports:
- 3003:3003
- 3005:3005
links:
- tessellate-fragment
tessellate-editor:
build: packages/tessellate-editor
environment:
APP_PORT: 3004
APP_PORT: 3007
BUNDLE_TARGET: http://localhost:3001/bundles
ports:
- 3004:3004
- 3007:3007
links:
- tessellate-bundler
3 changes: 3 additions & 0 deletions package.json
Expand Up @@ -2,7 +2,10 @@
"scripts": {
"postinstall": "npm run bootstrap && npm run dist",
"test": "lerna run test",
"clean": "lerna run clean",
"dist": "lerna run dist",
"flow-check": "lerna run flow-check",
"flow-typed-install": "lerna run flow-typed-install",
"bootstrap": "lerna exec -- npm install && lerna bootstrap",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform"
},
Expand Down

0 comments on commit 3b733f6

Please sign in to comment.