From fa8d09c484600e25fef1a29edc169c8304c389a3 Mon Sep 17 00:00:00 2001 From: Jenni Nurmi Date: Fri, 23 Nov 2018 16:59:55 +0200 Subject: [PATCH] Create app.json --- app.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 app.json diff --git a/app.json b/app.json new file mode 100644 index 00000000..be14cdb1 --- /dev/null +++ b/app.json @@ -0,0 +1,47 @@ +{ + "name": "Sharetribe Flex Template Demo", + "description": "Sharetribe Flex Template Demo - Saunatime!", + "keywords": [ + "node", + "react" + ], + "repository": "https://github.com/sharetribe/flex-template-web/", + "env": { + "REACT_APP_MAPBOX_ACCESS_TOKEN": { + "description": "See: Integrating to map providers documentation https://github.com/sharetribe/flex-template-web/blob/master/docs/map-providers.md" + }, + "REACT_APP_SHARETRIBE_SDK_CLIENT_ID": { + "description": "Client ID (API key). You will get this from the Sharetribe team." + }, + "REACT_APP_STRIPE_PUBLISHABLE_KEY": { + "description": "Stripe publishable API key for generating tokens with Stripe API. Use test key (prefix pktest) for development." + }, + "REACT_APP_SHARETRIBE_MARKETPLACE_CURRENCY": { + "description": "The currency used in the Marketplace as ISO 4217 currency code. For example: USD, EUR, CAD, AUD, etc.", + "value": "USD" + }, + "REACT_APP_CANONICAL_ROOT_URL": { + "description": "Canonical root url of the marketplace. E.g. https://the-name-of-your-app.herokuapp.com or your actual domain. This is needed for social media sharing and SEO optimization." + }, + "NODE_ENV": { + "description": "Node env. Use 'development' for development and 'production' for production.", + "value": "production" + }, + "REACT_APP_ENV": { + "description": "A more fine grained env definition than NODE_ENV. Is used for example to differentiate envs in logging.", + "value": "production" + }, + "REACT_APP_SHARETRIBE_USING_SSL": { + "description": "Redirect HTTP to HTTPS?", + "value": "true" + }, + "SERVER_SHARETRIBE_TRUST_PROXY": { + "description": "Set when running the app behind a reverse proxy, e.g. in Heroku.", + "value": "true" + }, + "REACT_APP_CSP": { + "description": "See: Content Security Policy (CSP) documentation https://github.com/sharetribe/flex-template-web/blob/master/docs/content-security-policy.md", + "value": "report" + } + } +} \ No newline at end of file