Skip to content
This repository has been archived by the owner on Jun 10, 2021. It is now read-only.

Commit

Permalink
Merge branch 'github_master'
Browse files Browse the repository at this point in the history
# Conflicts:
#	common/project.js
  • Loading branch information
kyle-ssg committed Jul 12, 2020
2 parents 24a5e63 + 799d8e5 commit 46cf709
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img width="100%" src="./hero.png"/>
[<img alt="Feature Flag, Remote Config and A/B Testing platform, Bullet Train" width="100%" src="./hero.png"/>](https://bullet-train.io/)

[![Donate](https://liberapay.com/assets/widgets/donate.svg)](https://liberapay.com/Bullet-Train/donate)

Expand Down
16 changes: 8 additions & 8 deletions common/project.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
module.exports = global.Project = {
api: 'https://api.bullet-train.io/api/v1/',
bulletTrain: '4vfqhypYjcPoGGu8ByrBaj', // This is our Bullet Train API key - Bullet Train runs on Bullet Train!
env: 'prod', // This is used for Sentry tracking
ga: 'UA-120237963-1', // This is our Google Analytics key
sentry: 'https://[email protected]/1320942',
api: 'https://api-dev.bullet-train.io/api/v1/',
bulletTrainClientAPI: 'https://api.bullet-train.io/api/v1/',
bulletTrain: '8KzETdDeMY7xkqkSkY3Gsg', // This is our Bullet Train API key - Bullet Train runs on Bullet Train!
debug: false,
env: 'dev', // This is used for Sentry tracking
ga: 'UA-120237963-3', // This is our Google Analytics key
demoAccount: {
email: '[email protected]',
password: 'demo_account',
},
chargebee: {
site: 'bullettrain',
site: 'bullettrain-test',
},
crispChat: '8857f89e-0eb5-4263-ab49-a293872b6c19',
mixpanel: '9448f5be8a5555c380e5dd4b7ac2c345',
assetUrl: 'https://cdn.bullet-train.io', // Location of the static files from build/, should contain a directory called static/
mixpanel: '6143f9ceefb1c67640a0771345e8c095',
};
1 change: 1 addition & 0 deletions common/stores/config-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ store.dispatcherIndex = Dispatcher.register(store, (payload) => {
bulletTrain.init({
environmentID: Project.bulletTrain,
onChange: controller.loaded,
api: Project.bulletTrainClientAPI,
});

controller.store = store;
Expand Down
1 change: 1 addition & 0 deletions env/project_dev.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = global.Project = {
api: 'https://api-dev.bullet-train.io/api/v1/',
bulletTrainClientAPI: 'https://api.bullet-train.io/api/v1/',
bulletTrain: '8KzETdDeMY7xkqkSkY3Gsg', // This is our Bullet Train API key - Bullet Train runs on Bullet Train!
debug: false,
env: 'dev', // This is used for Sentry tracking
Expand Down
1 change: 1 addition & 0 deletions env/project_prod.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = global.Project = {
api: 'https://api.bullet-train.io/api/v1/',
bulletTrainClientAPI: 'https://api.bullet-train.io/api/v1/',
bulletTrain: '4vfqhypYjcPoGGu8ByrBaj', // This is our Bullet Train API key - Bullet Train runs on Bullet Train!
env: 'prod', // This is used for Sentry tracking
ga: 'UA-120237963-1', // This is our Google Analytics key
Expand Down
1 change: 1 addition & 0 deletions env/project_staging.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = global.Project = {
api: 'https://api-staging.bullet-train.io/api/v1/',
bulletTrainClientAPI: 'https://api.bullet-train.io/api/v1/',
bulletTrain: 'ENktaJnfLVbLifybz34JmX', // This is our Bullet Train API key - Bullet Train runs on Bullet Train!
env: 'staging', // This is used for Sentry tracking
ga: 'UA-120237963-7', // This is our Google Analytics key
Expand Down
1 change: 1 addition & 0 deletions environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ module.exports = {
sentry: process.env.SENTRY,
api: process.env.API_URL,
assetURL: process.env.ASSET_URL,
bulletTrainClientAPI: process.env.BULLET_TRAIN_CLIENT_API,
}),
};

0 comments on commit 46cf709

Please sign in to comment.