@@ -37,7 +37,7 @@ test-unit:
3737
3838test-features :
3939 @ echo -e " $( BUILD_PRINT) Gherkin Features Testing ...$( END_BUILD_PRINT) "
40- @ tox -e features
40+ # @ tox -e features
4141
4242test-e2e :
4343 @ echo -e " $( BUILD_PRINT) End to End Testing ...$( END_BUILD_PRINT) "
@@ -113,6 +113,24 @@ stop-allegro-graph:
113113 @ echo -e " $( BUILD_PRINT) Stopping Allegro-Graph services $( END_BUILD_PRINT) "
114114 @ docker-compose -p ${ENVIRONMENT} --file ./infra/allegro-graph/docker-compose.yml --env-file ${ENV_FILE} down
115115
116+ # ------------------------
117+ start-fuseki : build-externals
118+ @ echo -e " $( BUILD_PRINT) Starting Fuseki services $( END_BUILD_PRINT) "
119+ @ docker-compose -p ${ENVIRONMENT} --file ./infra/fuseki/docker-compose.yml --env-file ${ENV_FILE} up -d
120+
121+ stop-fuseki :
122+ @ echo -e " $( BUILD_PRINT) Stopping Fuseki services $( END_BUILD_PRINT) "
123+ @ docker-compose -p ${ENVIRONMENT} --file ./infra/fuseki/docker-compose.yml --env-file ${ENV_FILE} down
124+
125+ # ------------------------
126+ start-sftp : build-externals
127+ @ echo -e " $( BUILD_PRINT) Starting SFTP services $( END_BUILD_PRINT) "
128+ @ docker-compose -p ${ENVIRONMENT} --file ./infra/sftp/docker-compose.yml --env-file ${ENV_FILE} up -d
129+
130+ stop-sftp :
131+ @ echo -e " $( BUILD_PRINT) Stopping SFTP services $( END_BUILD_PRINT) "
132+ @ docker-compose -p ${ENVIRONMENT} --file ./infra/sftp/docker-compose.yml --env-file ${ENV_FILE} down
133+
116134# ------------------------
117135build-elasticsearch : build-externals
118136 @ echo -e " $( BUILD_PRINT) Build Elasticsearch services $( END_BUILD_PRINT) "
@@ -283,23 +301,23 @@ refresh-mapping-files:
283301# -----------------------------------------------------------------------------
284302# API Service commands
285303# -----------------------------------------------------------------------------
286- build-all-apis : build-id_manager -api
304+ build-all-apis : build-digest_service -api
287305
288- start-all-apis : start-id_manager -api
306+ start-all-apis : start-digest_service -api
289307
290- stop-all-apis : stop-id_manager -api
308+ stop-all-apis : stop-digest_service -api
291309
292- build-id_manager -api :
293- @ echo -e " $( BUILD_PRINT) Build id_manager API service $( END_BUILD_PRINT) "
310+ build-digest_service -api :
311+ @ echo -e " $( BUILD_PRINT) Build digest_service API service $( END_BUILD_PRINT) "
294312 @ docker-compose -p common --file infra/api/docker-compose.yml --env-file ${ENV_FILE} build --no-cache --force-rm
295313 @ docker-compose -p common --file infra/api/docker-compose.yml --env-file ${ENV_FILE} up -d --force-recreate
296314
297- start-id_manager -api :
298- @ echo -e " $( BUILD_PRINT) Starting id_manager API service $( END_BUILD_PRINT) "
315+ start-digest_service -api :
316+ @ echo -e " $( BUILD_PRINT) Starting digest_service API service $( END_BUILD_PRINT) "
299317 @ docker-compose -p common --file infra/api/docker-compose.yml --env-file ${ENV_FILE} up -d
300318
301- stop-id_manager -api :
302- @ echo -e " $( BUILD_PRINT) Stopping id_manager API service $( END_BUILD_PRINT) "
319+ stop-digest_service -api :
320+ @ echo -e " $( BUILD_PRINT) Stopping digest_service API service $( END_BUILD_PRINT) "
303321 @ docker-compose -p common --file infra/api/docker-compose.yml --env-file ${ENV_FILE} down
304322
305323
0 commit comments