@@ -49,9 +49,13 @@ MB3_SERVER_HOST=mb3server
49
49
50
50
# The port where the similarity service is exposed
51
51
SIMILARITY_SERVICE_PORT=8082
52
+
52
53
# The host name of similarity service
53
54
SIMILARITY_SERVICE_HOST=localhost
54
55
56
+ # The base URL for the similarity service
57
+ SIMILARITY_SERVICE_BASE_URL=""
58
+
55
59
# The path to the volume to store, e.g. "/massbank-volume"
56
60
MSP_LOCAL_PATH=./../data/massbank-volume
57
61
@@ -71,8 +75,11 @@ EXPORT_SERVICE_PORT=8083
71
75
# The hostname of the export-service
72
76
EXPORT_SERVICE_HOST=localhost
73
77
78
+ # The base URL for the export service
79
+ EXPORT_SERVICE_BASE_URL=""
80
+
74
81
# The MassBank-data repository path
75
- EXPORT_MB_DATA_DIRECTORY=./../data/MassBank -data
82
+ EXPORT_MB_DATA_DIRECTORY=./../data/massbank -data
76
83
77
84
# The port used internally by the export-service
78
85
EXPORT_SERVICE_PORT_INTERNAL=8080
@@ -152,5 +159,8 @@ DISTRIBUTOR_URL=""
152
159
# API server (from external)
153
160
# ---------------------------
154
161
155
- # The URL of the API server (from external)
156
- MB3_API_URL=http://${MB3_API_HOST}:${MB3_API_PORT}${MB3_API_BASE_URL}
162
+ # The different final URLs (from external)
163
+ MB3_API_URL=http://${MB3_API_HOST}:${MB3_API_PORT}${MB3_API_BASE_URL}
164
+ MB3_FRONTEND_URL=http://${MB3_FRONTEND_HOST}:${MB3_FRONTEND_PORT}${MB3_FRONTEND_BASE_URL}
165
+ SIMILARITY_SERVICE_URL=http://${SIMILARITY_SERVICE_HOST}:${SIMILARITY_SERVICE_PORT}${SIMILARITY_SERVICE_BASE_URL}
166
+ EXPORT_SERVICE_URL=http://${EXPORT_SERVICE_HOST}:${EXPORT_SERVICE_PORT}${EXPORT_SERVICE_BASE_URL}
0 commit comments