Skip to content

Commit

Permalink
Removes GOV.UK Notify and pagination settings
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbarnes committed Sep 12, 2024
1 parent caf390b commit 605be49
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions orp/config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,19 +243,12 @@
# default="https://data.api.trade.gov.uk/v1/datasets/market-barriers/versions/v1.0.10/data?format=json", # noqa: E501
# )

# Pagination
# RESULTS_PER_PAGE = 10

# GOV Notify
# GOV_NOTIFY_API_KEY = env.str("GOV_NOTIFY_API_KEY", default=None)
# GOV_NOTIFY_TESTING_KEY = env.str("GOV_NOTIFY_TESTING_KEY", default=None)
# DISABLE_NOTIFY_WHITELIST = env.bool("DISABLE_NOTIFY_WHITELIST", default=False) # noqa: E501

# HOSTNAME
HOSTNAME_MAP = {
"local": "http://localhost:8081",
"dev": "https://dev.orp.uktrade.digital/",
"staging": "https://staging.orp.uktrade.digital/",
"prod": "https://orp.uktrade.digital/",
}

HOSTNAME = HOSTNAME_MAP.get(ENVIRONMENT.lower(), HOSTNAME_MAP["prod"])

0 comments on commit 605be49

Please sign in to comment.