[READ-ONLY] Mirror of https://github.com/probablykasper/cryp. Cryptocurrency portfolio tracker (unfinished)
0

Configure Feed

Select the types of activity you want to include in your feed.

README update

KH (Jan 5, 2018, 10:28 PM +0100) 6d6eab69 e2467371

+16 -1
+16 -1
README.md
··· 4 4 # ToDo 5 5 - Empty 6 6 7 - # Deployment 7 + # Get started 8 8 - **CRYP_ENV** environment variable in docker-compose.yml 9 9 - Dev: **dev** 10 10 - Production: **production** 11 + - Fill in your Google API Client ID and Client Secret in web/src/modules/keys.js. To get that: 12 + 1. Go to the [APIs section of GCP](https://console.cloud.google.com/apis/credentials) and create a project, then select it. 13 + 2. Click "Create credentials" and "OAuth client ID". 14 + 3. The Application type should be Web application. Now add your Authorized redirect URIs. Add "http://localhost/auth/google/callback" for local development and add another one for production, replacing "localhost" with your own domain name. 15 + 4. Press "Create", and you'll be presented with your client ID and secret. 16 + 17 + Your keys.js file should have this format: 18 + ```javascript 19 + module.exports = { 20 + google: { 21 + clientID: "", 22 + clientSecret: "" 23 + } 24 + } 25 + ```