From 51d9f00bc5abff396827da6b27cc2991ce50c44e Mon Sep 17 00:00:00 2001 From: bill bittner Date: Tue, 13 Jun 2017 08:43:56 -0700 Subject: [PATCH] updated config defaults --- config/custom-environment-variables.json | 3 --- config/development.json | 8 ++++++++ config/production.json | 8 ++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 config/development.json create mode 100644 config/production.json diff --git a/config/custom-environment-variables.json b/config/custom-environment-variables.json index c3ac0d80..1a2f8501 100644 --- a/config/custom-environment-variables.json +++ b/config/custom-environment-variables.json @@ -1,8 +1,5 @@ { "WalletConfig": { "lbryAddress": "LBRY_WALLET_ADDRESS" - }, - "AnalyticsConfig":{ - "googleId": "GOOGLE_ANALYTICS_ID" } } \ No newline at end of file diff --git a/config/development.json b/config/development.json new file mode 100644 index 00000000..c1bac572 --- /dev/null +++ b/config/development.json @@ -0,0 +1,8 @@ +{ + "WalletConfig": { + "lbryAddress": "none" + }, + "AnalyticsConfig":{ + "googleId": "UA-100747990-1" + } +} \ No newline at end of file diff --git a/config/production.json b/config/production.json new file mode 100644 index 00000000..95f72955 --- /dev/null +++ b/config/production.json @@ -0,0 +1,8 @@ +{ + "WalletConfig": { + "lbryAddress": "none" + }, + "AnalyticsConfig":{ + "googleId": "UA-60403362-2" + } +} \ No newline at end of file