-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecrets-example.sh
24 lines (23 loc) · 1010 Bytes
/
secrets-example.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# You can get the first two values from developers.google.com
export ADWORDS_CLIENT_ID=Your Oauth client id
export ADWORDS_CLIENT_SECRET=Oauth client secret
# You need to generate a refresh token. The API docs tell you how
export ADWORDS_REFRESH_TOKEN=Refresh token
# API developer token. You have to apply to AdWords to get one of these
export ADWORDS_DEVELOPER_TOKEN=Dev token
# Password for the postgres database superuser
# This password is set at database creation after which
# changing it here will not update the password in the database
export POSTGRES_PG_PASSWORD="postgres"
# Where the host machine is
export PRODUCTION_HOST=example.com
# User to run as on host.
# Must be able to run docker
export PRODUCTION_USER=user
# Amazon access keys. Must allow up/download from S3
export AWS_ACCESS_KEY_ID=keykeykey
export AWS_SECRET_ACCESS_KEY=secretsecretsecret
# S3 buckets where backups are stored
# These need to be different buckets
export ADWORDS_REPORT_S3_BUCKET=
export POSTGRES_BACKUP_S3_BUCKET=