|
| 1 | +HOST=0.0.0.0 |
| 2 | +PORT=3000 |
| 3 | +SERVICE_NAME='your_service_name' |
| 4 | + |
| 5 | +#JWT CONFIGURATION |
| 6 | +JWT_KEY='your_secret' |
| 7 | +SECRET='my_super_secret' |
| 8 | +HASH=10 |
| 9 | +#JWT_PRIVATE_SECRET='jwt-private-secret' |
| 10 | +#JWT_PUBLIC_SECRET='jwt-public-secret' |
| 11 | + |
| 12 | +#GOOGLE CLOUD CONFIGURATION |
| 13 | +#Go to GCP and create a service account and replace all the fields with yours in the json file |
| 14 | +GOOGLE_APPLICATION_CREDENTIALS='./src/config/gcloud/google-application-credentials.json' |
| 15 | +GOOGLE_PROJECT_ID='your_google_project_id' |
| 16 | +GOOGLE_STORAGE_BUCKET_NAME='your_google_storage_bucket_name' |
| 17 | +GOOGLE_CLIENT_ID='your_google_client_id' |
| 18 | +GOOGLE_CLIENT_SECRET='your_google_client_secret' |
| 19 | +GOOGLE_MAPS_API_KEY='your_google_maps_api_key' |
| 20 | + |
| 21 | +#CLIENT CONFIGURATION |
| 22 | +CLIENT_URL='your_client_url_to_authorize' |
| 23 | + |
| 24 | +#MONGO DB CONFIGURATION |
| 25 | +MONGO_URI='your_mongo_db_connection' |
| 26 | +MONGO_URI_TEST='your_mongo_db_connection_test' |
| 27 | +MONGO_USER='your_mongo_user' |
| 28 | +MONGO_PASS='your_mongo_password' |
| 29 | + |
| 30 | +#MYSQL CONFIGURATION |
| 31 | +MYSQL_HOST_STAGE='your_myql_host_stage' |
| 32 | +MYSQL_USER_STAGE='your_myql_user' |
| 33 | +MYSQL_PASSWORD_STAGE='your_myql_pass' |
| 34 | +MYSQL_DB_STAGE='your_myql_db_name' |
| 35 | +MYSQL_SOCKET_STAGE='/your/socket-cloud-sql' |
| 36 | + |
| 37 | +MYSQL_HOST_PROD='your_myql_host_stage' |
| 38 | +MYSQL_USER_PROD='your_myql_user' |
| 39 | +MYSQL_PASSWORD_PROD='your_myql_pass' |
| 40 | +MYSQL_DB_PROD='your_myql_db_name' |
| 41 | +MYSQL_SOCKET_PROD='/your/socket-cloud-sql' |
| 42 | + |
| 43 | + |
| 44 | +#SPARKPOST CONFIGURATION |
| 45 | +SPARKPOST_API_KEY='your_sparkpost_test_api_key' |
| 46 | +#SPARKPOST_API_KEY='your_sparkpost_live_api_key' |
| 47 | +SPARKPOST_SENDER_DOMAIN='your_sparkpost_sender_domain' |
| 48 | + |
| 49 | +# MESSAGEBIRD CONFIGURATION |
| 50 | +MESSAGEBIRD_ACCESS_KEY='your_messagbird_access_key' #test key |
| 51 | +#MESSAGEBIRD_ACCESS_KEY='your_messagbird_access_key' #live key |
| 52 | +MESSAGEBIRD_WHATSAPP_CHANNEL_ID='your_messagebird_whatsapp_channel_id' |
| 53 | +MESSAGEBIRD_TEMPLATE_NAMESPACE_ID='your_messagebird_template_namespace_id' |
| 54 | + |
| 55 | +#SENDGRID CONFIGURATION |
| 56 | +SENDGRID_API_KEY='your_sendgrid_api_key' |
| 57 | +SENDGRID_SENDER_EMAIL='your_sendgrid_email_sender' |
| 58 | + |
| 59 | +#TWILIO CONFIGURATION |
| 60 | +TWILIO_ACCOUNT_SID='your_twilio_account_sid' |
| 61 | +TWILIO_AUTH_TOKEN='your_twilio_account_token' |
| 62 | +TWILIO_PHONE_NUMBER='+your_phone_number' |
| 63 | + |
| 64 | + |
| 65 | +#PUB/SUB TOPICS |
| 66 | +TOPIC_NAME='your_pubbus_topic_name' |
| 67 | +SUBSCRIPTION_NAME='your_pubsub_subscription_name' |
0 commit comments