···44# ToDo
55- Empty
6677-# Deployment
77+# Get started
88- **CRYP_ENV** environment variable in docker-compose.yml
99 - Dev: **dev**
1010 - Production: **production**
1111+- Fill in your Google API Client ID and Client Secret in web/src/modules/keys.js. To get that:
1212+ 1. Go to the [APIs section of GCP](https://console.cloud.google.com/apis/credentials) and create a project, then select it.
1313+ 2. Click "Create credentials" and "OAuth client ID".
1414+ 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.
1515+ 4. Press "Create", and you'll be presented with your client ID and secret.
1616+1717+ Your keys.js file should have this format:
1818+ ```javascript
1919+ module.exports = {
2020+ google: {
2121+ clientID: "",
2222+ clientSecret: ""
2323+ }
2424+ }
2525+ ```