-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add static-image-api to docker-compose.yml (#2619)
- Loading branch information
1 parent
3fd3a61
commit b70014a
Showing
5 changed files
with
65 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# private variables only accessed from server | ||
# see https://kit.svelte.dev/docs/modules#$env-dynamic-private | ||
# GIS server endpoints | ||
MARTIN_API_ENDPOINT= | ||
PGTILESERV_API_ENDPOINT=http://localhost:7800 | ||
TITILER_ENDPOINT=http://localhost:8000/cog | ||
|
||
AZURE_STORAGE_ACCOUNT= | ||
AZURE_STORAGE_ACCESS_KEY= | ||
# Storage account for data uploading | ||
AZURE_STORAGE_ACCOUNT_UPLOAD= | ||
AZURE_STORAGE_ACCESS_KEY_UPLOAD= | ||
AZURE_SERVICE_BUS_CONNECTIONSTRING= | ||
AZURE_SERVICE_BUS_QUEUE_NAME= | ||
DATABASE_CONNECTION= | ||
# Private dynamic variables for Azure Active Directory (imported via $env/dynamic/private in Auth.js) | ||
# these dynamic variables are loaded from `.env` in local, and they are loaded from application settings in server | ||
# These variables need to be registered in Azure AppService from portal in production | ||
# On UNIX systems you can use `openssl rand -hex 32` or | ||
# https://generate-secret.vercel.app/32 to generate a secret. | ||
AUTH_SECRET= | ||
AZURE_AD_B2C_TENANT_ID= | ||
AZURE_AD_B2C_CLIENT_ID= | ||
AZURE_AD_B2C_CLIENT_SECRET= | ||
|
||
# GitHub OAuth Apps variables can be generated from the below URL | ||
# https://github.com/organizations/UNDP-Data/settings/applications | ||
# geohub-localhost is for http://localhost:5173/auth/callback/github | ||
# geohub-dev is for https://dev.undpgeohub.org/auth/callback/github | ||
# geohub-prod is for https://geohub.data.undp.org/auth/callback/github | ||
GEOHUB_GITHUB_ID= | ||
GEOHUB_GITHUB_SECRET= | ||
|
||
# Connection string for Azure PubSub | ||
AZURE_PUBSUB_CONNECTIONSTRING= | ||
AZURE_PUBSUB_GROUP_DATA_PIPELINE= | ||
|
||
# endpoint of static image api | ||
GEOHUB_STATIC_IMAGE_API=http://localhost:9000/api | ||
|
||
# this setting is only used when localhost | ||
GEOHUB_API_ENDPOINT=http://localhost:5173 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
.env | ||
.env.* | ||
!.env.example | ||
!.env.docker.example | ||
.idea | ||
.vscode/ | ||
/.svelte-kit | ||
|