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

add app-events

parent 04dbc6bd
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,7 @@ export LOCAL_BACKEND_OCIS=false
export LOCAL_BACKEND_GOODNEWS=false
export LOCAL_BACKEND_DONATIONS=false
export LOCAL_BACKEND_VOLUNTEERING=false
export LOCAL_BACKEND_EVENTS=false
export LOCAL_BACKEND_GEOAPI=false
export LOCAL_BACKEND_STORYBOOK=true
export LOCAL_BACKEND_NOTIFICATIONS=false
......
22.14.0
......@@ -310,6 +310,7 @@ The following table lists all ports that are used for local execution.
| geo | 8003 |
| volunteering | 8004 |
| notifications | 8005 |
| app-events | 8006 |
| pubsub-emulator | 8085 |
| ocis-subscriber | 8086 |
| ocis-postgres | 8087 |
......
......@@ -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-translation-api.git holi-translation-api
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
# make use of common definitions from holi-meta. If you want to check them out,
......
......@@ -121,6 +121,18 @@ procs:
echo starting fake;
FAKE="true" ./mprocs-start.sh;
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:
cwd: <CONFIG_DIR>/holi-translation-api
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