mirror of
https://github.com/GSA/notifications-api.git
synced 2025-12-13 16:52:23 -05:00
This makes a few changes to: - Make local development consistent with our other apps. It's now faster to start Celery locally since we don't try to build the image each time - this is usually quick, but unnecessary. - Add support for connecting to a local Redis instance. Note that the previous suggestion of "REDIS = True" was incorrect as this would be turned into the literal string "True". I've also co-located and extended the recipes in the Makefile to make them a bit more visible.
22 lines
744 B
Bash
Executable File
22 lines
744 B
Bash
Executable File
#!/bin/bash
|
|
set -eu
|
|
|
|
DOCKER_IMAGE_NAME=notifications-api
|
|
|
|
source environment.sh
|
|
|
|
# this script should be run from within your virtualenv so you can access the aws cli
|
|
AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID:-"$(aws configure get aws_access_key_id)"}
|
|
AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY:-"$(aws configure get aws_secret_access_key)"}
|
|
: "${SQLALCHEMY_DATABASE_URI:=postgresql://postgres@host.docker.internal/notification_api}"
|
|
|
|
docker run -it --rm \
|
|
-e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID \
|
|
-e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY \
|
|
-e SQLALCHEMY_DATABASE_URI=$SQLALCHEMY_DATABASE_URI \
|
|
-e REDIS_ENABLED=${REDIS_ENABLED:-0} \
|
|
-e REDIS_URL=${REDIS_URL:-''} \
|
|
-v $(pwd):/home/vcap/app \
|
|
${DOCKER_IMAGE_NAME} \
|
|
${@}
|