-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathenv_vars.py
More file actions
31 lines (26 loc) · 978 Bytes
/
Copy pathenv_vars.py
File metadata and controls
31 lines (26 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Flask APP Configurations
FLAKS_APP_SECRET_KEY = 'secret'
# Replace these with your app's information
SLACK_APP_ID = 'your_app_id'
SLACK_CLIENT_ID = 'your_client_id'
SLACK_CLIENT_SECRET = 'your_client_secret'
SLACK_REDIRECT_URI = 'your_redirect_uri'
# AWS S3 Credentials
PUSH_TO_S3 = True
AWS_ACCESS_KEY = 'your_aws_access_key'
AWS_SECRET_KEY = 'your_aws_secret_key'
METADATA_S3_BUCKET_NAME = 'your_metadata_s3_bucket_name'
RAW_DATA_S3_BUCKET_NAME = 'your_raw_data_s3_bucket_name'
NEW_RELIC_RAW_DATA_S3_BUCKET_NAME = 'your_new_relic_raw_data_s3_bucket_name'
SENTRY_RAW_DATA_S3_BUCKET_NAME = 'your_sentry_raw_data_s3_bucket_name'
# Slack Configurations
PUSH_TO_SLACK = True
SLACK_URL = 'your_slack_webhook_url'
# Postgres DB Credentials
PG_DB_HOSTNAME = 'localhost'
PG_DB_USERNAME = ''
PG_DB_PASSWORD = ''
PG_DB_NAME = 'data_scrapper_db'
# G-chat App Configurations
GOOGLE_OAUTH_REDIRECT_URI = 'your_redirect_uri'
GOOGLE_CLIENT_SECRETS_FILE = "google_chat_app_secret.json"