-
Notifications
You must be signed in to change notification settings - Fork 586
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
1 parent
429d2d3
commit f6ba760
Showing
4 changed files
with
10 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ const STITCH_SUPPORT_URL = | |
// This can be updated once https://github.com/10gen/baas/pull/7405 gets merged | ||
const BAAS_REPO = "[email protected]:10gen/baas.git"; | ||
const BAAS_UI_REPO = "[email protected]:10gen/baas-ui.git"; | ||
const MONGODB_PORT = 27017; | ||
const MONGODB_PORT = 26000; | ||
const MONGODB_URL = `mongodb://localhost:${MONGODB_PORT}`; | ||
|
||
dotenv.config(); | ||
|
@@ -265,7 +265,7 @@ function spawnBaaS() { | |
// Build and run the BaaS binary - we're doing this over "go run" because that doesn't propagate a kill signal | ||
// Build a binary | ||
execSync("go build -o baas_server cmd/server/main.go", { cwd: baasPath, stdio: "inherit" }); | ||
spawn(chalk.blueBright("baas"), "./baas_server", ["--configFile", "./etc/configs/local_config.json"], { | ||
spawn(chalk.blueBright("baas"), "./baas_server", ["--configFile", "./etc/configs/test_config.json"], { | ||
cwd: baasPath, | ||
env: { ...process.env, PATH: process.env.PATH + ":" + transpilerBinPath }, | ||
}); | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"local-mongodb-uri": "mongodb://localhost:27017" | ||
"local-mongodb-uri": "mongodb://localhost:26000" | ||
} |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"local-mongodb-uri": "mongodb://localhost:27017" | ||
"local-mongodb-uri": "mongodb://localhost:26000" | ||
} |