mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-24 09:21:39 -05:00
If TEST_DATABASE is set then the postgres connection is set to that. Jenkins sets it to the RDS instance that is in that AWS Account
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
#!/bin/bash
|
|
export NOTIFY_API_ENVIRONMENT='config.Test'
|
|
export ADMIN_BASE_URL='http://localhost:6012'
|
|
export ADMIN_CLIENT_USER_NAME='dev-notify-admin'
|
|
export ADMIN_CLIENT_SECRET='dev-notify-secret-key'
|
|
export AWS_REGION='eu-west-1'
|
|
export DANGEROUS_SALT='dangerous-salt'
|
|
export INVITATION_EMAIL_FROM='invites'
|
|
export INVITATION_EXPIRATION_DAYS=2
|
|
export NOTIFY_JOB_QUEUE='notify-jobs-queue-test'
|
|
export NOTIFICATION_QUEUE_PREFIX='notification_development-test'
|
|
export SECRET_KEY='secret-key'
|
|
export SQLALCHEMY_DATABASE_URI=${TEST_DATABASE:='postgresql://localhost/test_notification_api'}
|
|
export VERIFY_CODE_FROM_EMAIL_ADDRESS='no-reply@notify.works'
|
|
export FIRETEXT_API_KEY="Firetext"
|
|
export NOTIFY_EMAIL_DOMAIN="test.notify.com"
|
|
export MMG_API_KEY='mmg-secret-key'
|
|
export LOADTESTING_API_KEY="loadtesting"
|
|
export LOADTESTING_NUMBER="loadtesting"
|
|
export STATSD_ENABLED=True
|
|
export STATSD_HOST="localhost"
|
|
export STATSD_PORT=1000
|
|
export STATSD_PREFIX="stats-prefix"
|
|
export API_HOST_NAME="http://localhost:6011"
|
|
export FROM_NUMBER='from_number'
|
|
export MMG_URL="https://api.mmg.co.uk/json/api.php"
|