-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
380 additions
and
3,219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules/ | |
.env | ||
.idea | ||
.vscode | ||
.DS_Store | ||
.DS_Store | ||
supergraph.graphql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { startSubgraphs } from './subgraphs/subgraphs.js'; | ||
|
||
// For local development, we will run `rover dev` that will handle | ||
// composition and configure the ports of the Router and subgraphs manually | ||
// See supergraph-config-dev.yaml for config setup | ||
(async () => { | ||
// start subgraphs in monolith mode | ||
let port = undefined; | ||
if (process.env.NODE_ENV === 'dev') { | ||
// If you change this port for local dev, update rover dev config | ||
port = 4001; | ||
} | ||
await startSubgraphs(port); | ||
})(); |
Oops, something went wrong.