mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-10 23:32:27 -05:00
Source the configuration from an environment file, this way it is similar to how the aws environment works
13 lines
546 B
Bash
13 lines
546 B
Bash
export NOTIFY_API_ENVIRONMENT='config.Test'
|
|
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 DELIVERY_CLIENT_USER_NAME='dev-notify-delivery'
|
|
export DELIVERY_CLIENT_SECRET='dev-notify-secret-key'
|
|
export NOTIFY_JOB_QUEUE='notify-jobs-queue-test'
|
|
export NOTIFICATION_QUEUE_PREFIX='notification_development-test'
|
|
export SECRET_KEY='secret-key'
|
|
export SQLALCHEMY_DATABASE_URI='postgresql://localhost/test_notification_api'
|
|
|