mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-17 18:05:42 +02:00
* feat: Add ability to schedule notifications Signed-off-by: Artem Savchenko <armisav@gmail.com> * Clean up Signed-off-by: Artem Savchenko <armisav@gmail.com> * Clean up Signed-off-by: Artem Savchenko <armisav@gmail.com> * Add docker file Signed-off-by: Artem Savchenko <armisav@gmail.com> * Rename pod Signed-off-by: Artem Savchenko <armisav@gmail.com> * Add debug logging Signed-off-by: Artem Savchenko <armisav@gmail.com> * Reminder fixes Signed-off-by: Artem Savchenko <armisav@gmail.com> * Fix reminders Signed-off-by: Artem Savchenko <armisav@gmail.com> * Support reminders for all events Signed-off-by: Artem Savchenko <armisav@gmail.com> * Clean up Signed-off-by: Artem Savchenko <armisav@gmail.com> * Support for project todo Signed-off-by: Artem Savchenko <armisav@gmail.com> * Fix mismatched dependency Signed-off-by: Artem Savchenko <armisav@gmail.com> * Use base event class Signed-off-by: Artem Savchenko <armisav@gmail.com> --------- Signed-off-by: Artem Savchenko <armisav@gmail.com>
64 lines
2.1 KiB
Bash
Executable File
64 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# Supports minified mode for resource-constrained dev machines:
|
|
# rush docker --minified or rush docker:min
|
|
|
|
MINIFIED=false
|
|
for arg in "$@"; do
|
|
if [ "$arg" = "--minified" ]; then
|
|
MINIFIED=true
|
|
break
|
|
fi
|
|
done
|
|
|
|
if [ "$MINIFIED" = true ]; then
|
|
echo "Building minified docker images (excluding optional services)..."
|
|
rush docker:build -p 20 \
|
|
--to @hcengineering/pod-server \
|
|
--to @hcengineering/pod-front \
|
|
--to @hcengineering/prod \
|
|
--to @hcengineering/pod-account \
|
|
--to @hcengineering/pod-workspace \
|
|
--to @hcengineering/pod-collaborator \
|
|
--to @hcengineering/tool \
|
|
--to @hcengineering/pod-analytics-collector \
|
|
--to @hcengineering/rekoni-service \
|
|
--to @hcengineering/pod-datalake \
|
|
--to @hcengineering/pod-export \
|
|
--to @hcengineering/pod-media \
|
|
--to @hcengineering/pod-external
|
|
else
|
|
rush docker:build -p 20 \
|
|
--to @hcengineering/pod-server \
|
|
--to @hcengineering/pod-front \
|
|
--to @hcengineering/prod \
|
|
--to @hcengineering/pod-account \
|
|
--to @hcengineering/pod-workspace \
|
|
--to @hcengineering/pod-collaborator \
|
|
--to @hcengineering/tool \
|
|
--to @hcengineering/pod-print \
|
|
--to @hcengineering/pod-sign \
|
|
--to @hcengineering/pod-analytics-collector \
|
|
--to @hcengineering/rekoni-service \
|
|
--to @hcengineering/pod-ai-bot \
|
|
--to @hcengineering/import-tool \
|
|
--to @hcengineering/pod-stats \
|
|
--to @hcengineering/pod-fulltext \
|
|
--to @hcengineering/pod-love \
|
|
--to @hcengineering/pod-mail \
|
|
--to @hcengineering/pod-datalake \
|
|
--to @hcengineering/pod-mail-worker \
|
|
--to @hcengineering/pod-export \
|
|
--to @hcengineering/pod-media \
|
|
--to @hcengineering/pod-preview \
|
|
--to @hcengineering/pod-link-preview \
|
|
--to @hcengineering/pod-external \
|
|
--to @hcengineering/pod-backup \
|
|
--to @hcengineering/backup-api-pod \
|
|
--to @hcengineering/pod-billing \
|
|
--to @hcengineering/pod-process \
|
|
--to @hcengineering/pod-rating \
|
|
--to @hcengineering/pod-payment \
|
|
--to @hcengineering/pod-worker \
|
|
--to @hcengineering/pod-events-processor
|
|
fi
|