This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change to https * Change port and remove ssl * Point authority to alicloud * Fix route to subscriptions * Remove sync info polling * Change to ssl protocols * Change authority and subs route * Change authority to puti; * Disable loading screen * 878 insight path (#889) * Use node env to determine env * Remove cross env module * Add is prod func check in config * Fix order * Fix getting escrow result * Comment out loader (#895) * Update version * Publish script (#896) * Add publish script * Add publish command * Change script name * Remove publish script * Host switching (#897) * Add dynamic routes based on isProduction * Update readme * Fix path for localhost graphql * Fix WSS route (#904) * Fix routes for direct access to server * Update version * Add prod and dev ports * 921 network env (#922) * Add build script wrapper for mainnet and inject env * Add other scripts for other chains * Remove duplicate script * Use env vars in routes * Add start scripts for all env * Fix comments * Update version * Update readme * Update readme * Remove unused var
- Loading branch information
1 parent
2c39843
commit 160ccd1
Showing
18 changed files
with
141 additions
and
159 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,6 @@ | ||
// Set mainnet env vars | ||
process.env.API_HOSTNAME = 'puti.io'; | ||
process.env.API_PORT = 8989; | ||
|
||
// Run build script | ||
require('./build'); |
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,6 @@ | ||
// Set regtest env vars | ||
process.env.API_HOSTNAME = 'test.puti.io'; | ||
process.env.API_PORT = 5555; | ||
|
||
// Run build script | ||
require('./build'); |
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,6 @@ | ||
// Set testnet env vars | ||
process.env.API_HOSTNAME = 'dev.puti.io'; | ||
process.env.API_PORT = 6767; | ||
|
||
// Run build script | ||
require('./build'); |
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,6 @@ | ||
// Set mainnet env vars | ||
process.env.API_HOSTNAME = 'puti.io'; | ||
process.env.API_PORT = 8989; | ||
|
||
// Run start script | ||
require('./start'); |
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,6 @@ | ||
// Set regtest env vars | ||
process.env.API_HOSTNAME = 'test.puti.io'; | ||
process.env.API_PORT = 5555; | ||
|
||
// Run start script | ||
require('./start'); |
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,6 @@ | ||
// Set testnet env vars | ||
process.env.API_HOSTNAME = 'dev.puti.io'; | ||
process.env.API_PORT = 6767; | ||
|
||
// Run start script | ||
require('./start'); |
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
Oops, something went wrong.