forked from usdot-jpo-ode/jpo-cvmanager
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from usdot-jpo-ode/jpo-utils-update
Jpo utils update
- Loading branch information
Showing
8 changed files
with
249 additions
and
35 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
Submodule jpo-conflictmonitor
deleted from
eb1912
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,54 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<settings> | ||
<activeProfiles> | ||
<activeProfile>default</activeProfile> | ||
</activeProfiles> | ||
<servers> | ||
<server> | ||
<id>github_jpo_ode</id> | ||
<username>jpo_conflictmonitor</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
<server> | ||
<id>github_jpo_geojsonconverter</id> | ||
<username>jpo_conflictmonitor</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
<server> | ||
<id>github_jpo_conflictmonitor</id> | ||
<username>jpo_conflictmonitor</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
</servers> | ||
<profiles> | ||
<profile> | ||
<id>default</id> | ||
<repositories> | ||
<repository> | ||
<id>github_jpo_ode</id> | ||
<name>GitHub JPO ODE</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-ode</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>github_jpo_geojsonconverter</id> | ||
<name>GitHub JPO GeojsonConverter</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-geojsonconverter</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>github_jpo_conflictmonitor</id> | ||
<name>GitHub JPO ConflictMonitor</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-conflictmonitor</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
</settings> |
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
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 |
---|---|---|
@@ -1 +1,73 @@ | ||
# Set the HOST IP of where the containers are running | ||
DOCKER_HOST_IP= | ||
|
||
# Set to the directory where the source code is. Generally the location of this file. | ||
DOCKER_HOST_DIR= | ||
|
||
KAFKA_BOOTSTRAP_SERVERS=${DOCKER_HOST_IP}:9092 | ||
|
||
# GitHub properties for pulling the latest version of the JPO-ODE | ||
MAVEN_GITHUB_TOKEN= | ||
MAVEN_GITHUB_ORG=usdot-jpo-ode | ||
|
||
# Docker compose restart policy: https://docs.docker.com/engine/containers/start-containers-automatically/ | ||
RESTART_POLICY="on-failure:3" | ||
|
||
# Available profiles: | ||
# - all | ||
# - cm_api_full | ||
# - conflictmonitor | ||
# - geojsonconverter | ||
# - cm_gui | ||
# - cm_api | ||
# - keycloak | ||
# - mongo | ||
# - ode | ||
# - adm | ||
# - cm_api_base | ||
# - cm_gui | ||
# - cm_api | ||
# - keycloak | ||
# - cm_api | ||
# - cm_gui | ||
# - keycloak | ||
# - geojsonconverter | ||
# - ode | ||
# - adm | ||
# - conflictmonitor | ||
# - mongo | ||
# EXAMPLE: COMPOSE_PROFILES=kafka_connect_standalone,kafka_ui,mongo_express | ||
# Refer to jpo-utils/.env for more profiles | ||
COMPOSE_PROFILES=cm_api_full | ||
|
||
|
||
|
||
# Put anything you want for the NEXTAUTH_SECRET, and KEYCLOAK_CLIENT_SECRET | ||
NEXTAUTH_SECRET= | ||
NEXTAUTH_URL=http://${DOCKER_HOST_IP}:3000 | ||
KEYCLOAK_CLIENT_ID=conflictvisualizer-gui | ||
KEYCLOAK_CLIENT_SECRET= | ||
KEYCLOAK_REALM=conflictvisualizer | ||
MAPBOX_TOKEN= | ||
|
||
KEYCLOAK_ADMIN= | ||
KEYCLOAK_ADMIN_PASSWORD= | ||
|
||
# May be different from docker host ip for production deployments. Change as appropriate. | ||
GUI_SERVER_URL=http://${DOCKER_HOST_IP}:3000 | ||
AUTH_SERVER_URL=http://${DOCKER_HOST_IP}:8084 | ||
API_SERVER_URL=http://${DOCKER_HOST_IP}:8081 | ||
CM_SERVER_URL=http://${DOCKER_HOST_IP}:8082 | ||
API_WS_URL=ws://${DOCKER_HOST_IP}:8081 | ||
|
||
|
||
#Specify MongoDB connection parameters | ||
DB_HOST_IP=${DOCKER_HOST_IP} | ||
DB_HOST_PORT=27017 | ||
CM_MONGO_READ_WRITE_USERNAME=api | ||
CM_MONGO_READ_WRITE_USERNAME=api | ||
CM_MONGO_AUTH_DB=CV | ||
|
||
Alternate Mongo Connection Strategy - This will override the MONGO behavior specified above | ||
#CM_MONGO_URI= | ||
|