Skip to content
Snippets Groups Projects
Commit 981d03ea authored by Gregor Schulz's avatar Gregor Schulz
Browse files

Merge branch 'add-app-events' into 'main'

add app-events

See merge request app/holi-meta!78
parents 04dbc6bd 5cab3d57
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ export LOCAL_BACKEND_OCIS=false ...@@ -5,6 +5,7 @@ export LOCAL_BACKEND_OCIS=false
export LOCAL_BACKEND_GOODNEWS=false export LOCAL_BACKEND_GOODNEWS=false
export LOCAL_BACKEND_DONATIONS=false export LOCAL_BACKEND_DONATIONS=false
export LOCAL_BACKEND_VOLUNTEERING=false export LOCAL_BACKEND_VOLUNTEERING=false
export LOCAL_BACKEND_EVENTS=false
export LOCAL_BACKEND_GEOAPI=false export LOCAL_BACKEND_GEOAPI=false
export LOCAL_BACKEND_STORYBOOK=true export LOCAL_BACKEND_STORYBOOK=true
export LOCAL_BACKEND_NOTIFICATIONS=false export LOCAL_BACKEND_NOTIFICATIONS=false
......
22.14.0
...@@ -310,6 +310,7 @@ The following table lists all ports that are used for local execution. ...@@ -310,6 +310,7 @@ The following table lists all ports that are used for local execution.
| geo | 8003 | | geo | 8003 |
| volunteering | 8004 | | volunteering | 8004 |
| notifications | 8005 | | notifications | 8005 |
| app-events | 8006 |
| pubsub-emulator | 8085 | | pubsub-emulator | 8085 |
| ocis-subscriber | 8086 | | ocis-subscriber | 8086 |
| ocis-postgres | 8087 | | ocis-postgres | 8087 |
......
...@@ -128,6 +128,7 @@ checkoutAndPrepare git@gitlab.holi.team:app/holi-chat-integration.git holi-chat- ...@@ -128,6 +128,7 @@ checkoutAndPrepare git@gitlab.holi.team:app/holi-chat-integration.git holi-chat-
checkoutAndPrepare git@gitlab.holi.team:app/holi-libretranslate.git holi-libretranslate checkoutAndPrepare git@gitlab.holi.team:app/holi-libretranslate.git holi-libretranslate
checkoutAndPrepare git@gitlab.holi.team:app/holi-translation-api.git holi-translation-api checkoutAndPrepare git@gitlab.holi.team:app/holi-translation-api.git holi-translation-api
checkoutAndPrepare git@gitlab.holi.team:app/holi-moderation.git holi-moderation checkoutAndPrepare git@gitlab.holi.team:app/holi-moderation.git holi-moderation
checkoutAndPrepare git@gitlab.holi.team:app/holi-app-events.git holi-app-events
# these are technically not used in a local development environment, but they # these are technically not used in a local development environment, but they
# make use of common definitions from holi-meta. If you want to check them out, # make use of common definitions from holi-meta. If you want to check them out,
......
...@@ -121,6 +121,18 @@ procs: ...@@ -121,6 +121,18 @@ procs:
echo starting fake; echo starting fake;
FAKE="true" ./mprocs-start.sh; FAKE="true" ./mprocs-start.sh;
fi; fi;
app-events:
cwd: <CONFIG_DIR>/holi-app-events
shell: >
. ../.envrc.local.backends;
. ./.envrc.local;
deno install;
if [ "$LOCAL_BACKEND_EVENTS" = "true" ]; then
./mprocs-start.sh;
else
echo starting fake;
FAKE="true" ./mprocs-start.sh;
fi;
translation-api: translation-api:
cwd: <CONFIG_DIR>/holi-translation-api cwd: <CONFIG_DIR>/holi-translation-api
shell: > shell: >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment