Skip to content

Commit

Permalink
Merge branch 'datachef' of github.com:DataChefHQ/self-hosted into add…
Browse files Browse the repository at this point in the history
…-custom-database-from-secrets-manager
  • Loading branch information
Glyphack committed Mar 8, 2022
2 parents ef92033 + 779a48d commit f7e55ba
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ COMPOSE_PROJECT_NAME=sentry-self-hosted
SENTRY_EVENT_RETENTION_DAYS=90
# You can either use a port number or an IP:PORT combo for SENTRY_BIND
# See https://docs.docker.com/compose/compose-file/#ports for more
SENTRY_BIND=9000
SENTRY_BIND=80
# Set SENTRY_MAIL_HOST to a valid FQDN (host/domain name) to be able to send emails!
# SENTRY_MAIL_HOST=example.com
SENTRY_IMAGE=getsentry/sentry:nightly
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ data/
.vscode/tags

# custom Sentry config
sentry/sentry.conf.py
sentry/config.yml
sentry/*.bak
sentry/requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ source parse-cli.sh
source dc-detect-version.sh
source error-handling.sh
source check-latest-commit.sh
source check-minimum-requirements.sh
# source check-minimum-requirements.sh

# Let's go! Start impacting things.
source turn-things-off.sh
Expand Down
2 changes: 1 addition & 1 deletion sentry/requirements.example.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Add plugins here
boto3
boto3 # TDOO ADD version
4 changes: 4 additions & 0 deletions sentry/sentry.conf.example.py → sentry/sentry.conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
from sentry.conf.server import * # NOQA
import boto3

import os

env = os.environ.get


# Generously adapted from pynetlinux: https://git.io/JJmga
def get_internal_network():
Expand Down

0 comments on commit f7e55ba

Please sign in to comment.