mirror of
https://github.com/hcengineering/platform.git
synced 2026-09-10 03:37:43 +02:00
Merge branch 'develop' of https://github.com/hcengineering/platform into win-support
This commit is contained in:
+47
-304
@@ -1,326 +1,69 @@
|
||||
# Min override: excludes optional services from min deployment.
|
||||
# Use with: docker compose -f docker-compose.yaml -f docker-compose.min.yaml up
|
||||
# (rush docker:up:min)
|
||||
# Excluded: preview, link-preview, elastic, redis, stats, payment, fulltext_cockroach,
|
||||
# print, sign, hulykvs, hulygun, hulypulse, process-service, backup-cockroach,
|
||||
# backup-api, rating_cockroach
|
||||
# Overrides below remove dependencies on excluded services so the min project validates.
|
||||
|
||||
services:
|
||||
cockroach:
|
||||
image: cockroachdb/cockroach:latest-v24.3
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
ports:
|
||||
- '26257:26257'
|
||||
- '8089:8080'
|
||||
command: start-single-node --insecure
|
||||
volumes:
|
||||
- cockroach_db:/cockroach/cockroach-data
|
||||
restart: unless-stopped
|
||||
redpanda:
|
||||
image: docker.redpanda.com/redpandadata/redpanda:v24.3.6
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
command:
|
||||
- redpanda
|
||||
- start
|
||||
- --kafka-addr internal://0.0.0.0:9092,external://0.0.0.0:19092
|
||||
- --advertise-kafka-addr internal://redpanda:9092,external://localhost:19092
|
||||
- --pandaproxy-addr internal://0.0.0.0:8082,external://0.0.0.0:18082
|
||||
- --advertise-pandaproxy-addr internal://redpanda:8082,external://localhost:18082
|
||||
- --schema-registry-addr internal://0.0.0.0:8081,external://0.0.0.0:18081
|
||||
- --rpc-addr redpanda:33145
|
||||
- --advertise-rpc-addr redpanda:33145
|
||||
- --mode dev-container
|
||||
- --smp 1
|
||||
- --default-log-level=info
|
||||
container_name: redpanda
|
||||
volumes:
|
||||
- redpanda:/var/lib/redpanda/data
|
||||
ports:
|
||||
- 18081:18081
|
||||
- 18082:18082
|
||||
- 19092:19092
|
||||
- 19644:9644
|
||||
healthcheck:
|
||||
test: ['CMD', 'rpk', 'cluster', 'info', '-X', 'user=superuser', '-X', 'pass=secretpassword']
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
minio:
|
||||
image: 'minio/minio'
|
||||
command: server /data --address ":9000" --console-address ":9001"
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
expose:
|
||||
- 9000
|
||||
- 9001
|
||||
ports:
|
||||
- 9000:9000
|
||||
- 9001:9001
|
||||
volumes:
|
||||
- files:/data
|
||||
healthcheck:
|
||||
test: ["CMD", "mc", "ready", "local"]
|
||||
interval: 5s
|
||||
retries: 10
|
||||
restart: unless-stopped
|
||||
preview:
|
||||
profiles: ["full"]
|
||||
link-preview:
|
||||
profiles: ["full"]
|
||||
elastic:
|
||||
image: 'elasticsearch:7.14.2'
|
||||
expose:
|
||||
- 9200
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
volumes:
|
||||
- elastic:/usr/share/elasticsearch/data
|
||||
ports:
|
||||
- 9200:9200
|
||||
environment:
|
||||
- ELASTICSEARCH_PORT_NUMBER=9200
|
||||
- BITNAMI_DEBUG=true
|
||||
- discovery.type=single-node
|
||||
- ES_JAVA_OPTS=-Xms1024m -Xmx1024m
|
||||
healthcheck:
|
||||
interval: 20s
|
||||
retries: 10
|
||||
test: curl -s http://localhost:9200/_cluster/health | grep -vq '"status":"red"'
|
||||
restart: unless-stopped
|
||||
account:
|
||||
image: hardcoreeng/account
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
links:
|
||||
- cockroach
|
||||
- minio
|
||||
- stats
|
||||
ports:
|
||||
- 3000:3000
|
||||
volumes:
|
||||
- ./branding.json:/var/cfg/branding.json
|
||||
environment:
|
||||
- ACCOUNT_PORT=3000
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- SERVER_SECRET=secret
|
||||
- ADMIN_EMAILS=admin,${PLATFORM_ADMIN_EMAILS}
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- WORKSPACE_LIMIT_PER_USER=10000
|
||||
- DB_URL=${DB_CR_URL}
|
||||
# - DB_URL=${MONGO_URL}
|
||||
# - DB_NS=account-2
|
||||
# Pass only one region to disallow selection for new workspaces.
|
||||
- REGION_INFO=cockroach|CockroachDB
|
||||
- TRANSACTOR_URL=ws://huly.local:3333,ws://huly.local:3332;;cockroach,
|
||||
- MAIL_URL=
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- FRONT_URL=http://huly.local:8087
|
||||
- MODEL_ENABLED=*
|
||||
- LAST_NAME_FIRST=true
|
||||
# - WS_LIVENESS_DAYS=1
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- BRANDING_PATH=/var/cfg/branding.json
|
||||
# - DISABLE_SIGNUP=true
|
||||
restart: unless-stopped
|
||||
profiles: ["full"]
|
||||
redis:
|
||||
profiles: ["full"]
|
||||
stats:
|
||||
image: hardcoreeng/stats
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
ports:
|
||||
- 4900:4900
|
||||
environment:
|
||||
- PORT=4900
|
||||
- SERVER_SECRET=secret
|
||||
restart: unless-stopped
|
||||
profiles: ["full"]
|
||||
payment:
|
||||
image: hardcoreeng/payment
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
ports:
|
||||
- 3040:3040
|
||||
environment:
|
||||
- SECRET=secret
|
||||
- PORT=3040
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- FRONT_URL=http://huly.local:8087
|
||||
- USE_SANDBOX=true
|
||||
- POLAR_ACCESS_TOKEN=${POLAR_ACCESS_TOKEN}
|
||||
- POLAR_WEBHOOK_SECRET=${POLAR_WEBHOOK_SECRET}
|
||||
- POLAR_SUBSCRIPTION_PLANS=${POLAR_SUBSCRIPTION_PLANS}
|
||||
restart: unless-stopped
|
||||
profiles: ["full"]
|
||||
fulltext_cockroach:
|
||||
profiles: ["full"]
|
||||
print:
|
||||
profiles: ["full"]
|
||||
sign:
|
||||
profiles: ["full"]
|
||||
hulykvs:
|
||||
profiles: ["full"]
|
||||
hulygun:
|
||||
profiles: ["full"]
|
||||
hulypulse:
|
||||
profiles: ["full"]
|
||||
process-service:
|
||||
profiles: ["full"]
|
||||
backup-cockroach:
|
||||
profiles: ["full"]
|
||||
backup-api:
|
||||
profiles: ["full"]
|
||||
rating_cockroach:
|
||||
profiles: ["full"]
|
||||
account:
|
||||
links: !override []
|
||||
workspace_cockroach:
|
||||
image: hardcoreeng/workspace
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
links:
|
||||
links: !override
|
||||
- cockroach
|
||||
- minio
|
||||
- stats
|
||||
volumes:
|
||||
- ./branding.json:/var/cfg/branding.json
|
||||
environment:
|
||||
- WS_OPERATION=all+backup
|
||||
- REGION=cockroach
|
||||
- SERVER_SECRET=secret
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- DB_URL=${DB_CR_URL}
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- MODEL_ENABLED=*
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- ACCOUNTS_DB_URL=${DB_CR_URL}
|
||||
- BRANDING_PATH=/var/cfg/branding.json
|
||||
- BACKUP_STORAGE=${BACKUP_STORAGE_CONFIG}
|
||||
- BACKUP_BUCKET=${BACKUP_BUCKET_NAME}
|
||||
- MAIL_URL=
|
||||
- INIT_WORKSPACE=staging-dev
|
||||
restart: unless-stopped
|
||||
collaborator:
|
||||
image: hardcoreeng/collaborator
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
links:
|
||||
- cockroach
|
||||
links: !override
|
||||
- minio
|
||||
- transactor_cockroach
|
||||
- stats
|
||||
ports:
|
||||
- 3078:3078
|
||||
environment:
|
||||
- COLLABORATOR_PORT=3078
|
||||
- SECRET=secret
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- STATS_URL=http://huly.local:4900
|
||||
restart: unless-stopped
|
||||
front:
|
||||
image: hardcoreeng/front
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
links:
|
||||
- cockroach
|
||||
- minio
|
||||
- elastic
|
||||
- transactor_cockroach
|
||||
- collaborator
|
||||
- stats
|
||||
ports:
|
||||
- 8087:8080
|
||||
- 8088:8080
|
||||
environment:
|
||||
- SERVER_PORT=8080
|
||||
- SERVER_SECRET=secret
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- UPLOAD_URL=/files
|
||||
- GMAIL_URL=http://huly.local:8088
|
||||
- CALENDAR_URL=http://huly.local:8095
|
||||
- TELEGRAM_URL=http://huly.local:8086
|
||||
- REKONI_URL=http://huly.local:4004
|
||||
- COLLABORATOR_URL=ws://huly.local:3078
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- GITHUB_URL=http://huly.local:3500
|
||||
- PRINT_URL=http://huly.local:4005
|
||||
- SIGN_URL=http://huly.local:4006
|
||||
# - ANALYTICS_COLLECTOR_URL=http://huly.local:4017
|
||||
- DESKTOP_UPDATES_URL=https://dist.huly.io
|
||||
- DESKTOP_UPDATES_CHANNEL=dev
|
||||
- DESKTOP_UPDATES_CHANNELS=dev;tracex:dev-tracex
|
||||
- BRANDING_URL=http://huly.local:8087/branding.json
|
||||
- STREAM_URL=http://huly.local:1080/recording
|
||||
- PAYMENT_URL=http://huly.local:3040
|
||||
# - DISABLE_SIGNUP=true
|
||||
restart: unless-stopped
|
||||
links: !override []
|
||||
transactor_cockroach:
|
||||
image: hardcoreeng/transactor
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
links:
|
||||
links: !override
|
||||
- cockroach
|
||||
- minio
|
||||
- account
|
||||
- stats
|
||||
ports:
|
||||
- 3332:3332
|
||||
volumes:
|
||||
- ./branding.json:/var/cfg/branding.json
|
||||
environment:
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- SERVER_PORT=3332
|
||||
- REGION=cockroach
|
||||
- SERVER_SECRET=secret
|
||||
- ENABLE_COMPRESSION=true
|
||||
- FULLTEXT_URL=http://huly.local:4702
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- DB_URL=${DB_CR_URL}
|
||||
- METRICS_CONSOLE=false
|
||||
- METRICS_FILE=metrics.txt
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- FRONT_URL=http://huly.local:8087
|
||||
- MAIL_URL=''
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- LAST_NAME_FIRST=true
|
||||
- BRANDING_PATH=/var/cfg/branding.json
|
||||
- AI_BOT_URL=http://huly.local:4010
|
||||
- COMMUNICATION_TIME_LOGGING_ENABLED=true
|
||||
restart: unless-stopped
|
||||
fulltext_cockroach:
|
||||
image: hardcoreeng/fulltext
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
restart: unless-stopped
|
||||
links:
|
||||
- elastic
|
||||
- cockroach
|
||||
ports:
|
||||
- 4702:4702
|
||||
environment:
|
||||
- PORT=4702
|
||||
- REGION=cockroach
|
||||
- SERVER_SECRET=secret
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- DB_URL=${DB_CR_URL}
|
||||
- FULLTEXT_DB_URL=http://huly.local:9200
|
||||
- ELASTIC_INDEX_NAME=local_storage_index # Same index for simplicity
|
||||
- STORAGE_CONFIG=${STORAGE_CONFIG}
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- REKONI_URL=http://huly.local:4004
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
export:
|
||||
links: !override
|
||||
- minio
|
||||
datalake:
|
||||
image: hardcoreeng/datalake
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
depends_on:
|
||||
depends_on: !override
|
||||
minio:
|
||||
condition: service_healthy
|
||||
cockroach:
|
||||
condition: service_started
|
||||
stats:
|
||||
condition: service_started
|
||||
account:
|
||||
condition: service_started
|
||||
ports:
|
||||
- 4030:4030
|
||||
environment:
|
||||
- PORT=4030
|
||||
- SECRET=secret
|
||||
- ACCOUNTS_URL=http://huly.local:3000
|
||||
- STATS_URL=http://huly.local:4900
|
||||
- STREAM_URL=http://huly.local:1080/recording
|
||||
- DB_URL=${DB_CR_URL}
|
||||
- BUCKETS=blobs,eu|http://minio:9000?accessKey=minioadmin&secretKey=minioadmin
|
||||
restart: unless-stopped
|
||||
redis:
|
||||
image: redis:8.0.2-alpine3.21
|
||||
ports:
|
||||
- 6379:6379
|
||||
restart: unless-stopped
|
||||
hulypulse:
|
||||
image: hardcoreeng/hulypulse
|
||||
depends_on:
|
||||
redis:
|
||||
condition: service_started
|
||||
ports:
|
||||
- 8099:8099
|
||||
environment:
|
||||
- HULY_REDIS_URLS=redis://redis:6379
|
||||
- HULY_BIND_PORT=8099
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
db:
|
||||
dbpg:
|
||||
files:
|
||||
elastic:
|
||||
cockroach_db:
|
||||
redpanda:
|
||||
|
||||
+17
-1
@@ -79,7 +79,7 @@ services:
|
||||
- --mode dev-container
|
||||
- --smp 1
|
||||
- --default-log-level=info
|
||||
- --memory 256M
|
||||
- --memory 512M
|
||||
container_name: redpanda
|
||||
volumes:
|
||||
- redpanda:/var/lib/redpanda/data
|
||||
@@ -594,6 +594,22 @@ services:
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- QUEUE_REGION=cockroach
|
||||
restart: unless-stopped
|
||||
time-machine:
|
||||
image: hardcoreeng/worker
|
||||
extra_hosts:
|
||||
- 'huly.local:host-gateway'
|
||||
depends_on:
|
||||
redpanda:
|
||||
condition: service_started
|
||||
account:
|
||||
condition: service_started
|
||||
cockroach:
|
||||
condition: service_started
|
||||
environment:
|
||||
- DB_URL=${DB_CR_URL}
|
||||
- QUEUE_CONFIG=${QUEUE_CONFIG}
|
||||
- QUEUE_REGION=cockroach
|
||||
restart: unless-stopped
|
||||
# translate:
|
||||
# image: hardcoreeng/translate
|
||||
# extra_hosts:
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"huly.local:8080": {
|
||||
"title": "Huly",
|
||||
"languages": "en,ru,pt,es,zh,fr,de,ja,tr",
|
||||
"languages": "en,ru,pt,pt-br,es,zh,fr,de,ja,tr",
|
||||
"defaultLanguage": "en",
|
||||
"defaultApplication": "tracker",
|
||||
"defaultSpace": "tracker:project:DefaultProject",
|
||||
@@ -30,7 +30,7 @@
|
||||
},
|
||||
"huly.local:8087": {
|
||||
"title": "Huly",
|
||||
"languages": "en,ru,pt,es,zh,fr,de,ja,tr",
|
||||
"languages": "en,ru,pt,pt-br,es,zh,fr,de,ja,tr",
|
||||
"defaultLanguage": "en",
|
||||
"defaultApplication": "tracker",
|
||||
"defaultSpace": "tracker:project:DefaultProject",
|
||||
|
||||
@@ -543,7 +543,7 @@ export async function configurePlatform() {
|
||||
|
||||
const languages = myBranding.languages
|
||||
? myBranding.languages.split(',').map((l) => l.trim())
|
||||
: ['en', 'ru', 'es', 'pt', 'zh', 'fr', 'cs', 'it', 'de', 'ja', 'tr']
|
||||
: ['en', 'ru', 'es', 'pt', 'pt-br', 'zh', 'fr', 'cs', 'it', 'de', 'ja', 'tr']
|
||||
|
||||
setMetadata(uiPlugin.metadata.Languages, languages)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user