diff --git a/.env.example b/.env.example index 80e9b07..d871136 100644 --- a/.env.example +++ b/.env.example @@ -547,7 +547,6 @@ MASTODON_URL=https://mastodon.social MASTODON_CLIENT_ID= MASTODON_CLIENT_SECRET= - ############ # WAHA (WhatsApp HTTP API) configuration # Engine: NOWEB | WEBJS | GOWS diff --git a/docker-compose.yml b/docker-compose.yml index 4c9b2da..d7312c3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -777,7 +777,7 @@ services: cluster.routing.allocation.disk.watermark.high: 256mb cluster.routing.allocation.disk.watermark.flood_stage: 128mb discovery.type: single-node - ES_JAVA_OPTS: -Xms256m -Xmx256m + ES_JAVA_OPTS: -Xms512m -Xmx512m xpack.security.enabled: "false" volumes: - temporal_elasticsearch_data:/usr/share/elasticsearch/data @@ -800,7 +800,7 @@ services: POSTGRES_PWD: ${POSTGRES_PASSWORD} POSTGRES_SEEDS: postgres DB_PORT: 5432 - TEMPORAL_UINAMESPACE: default + TEMPORAL_NAMESPACE: default ENABLE_ES: "true" ES_SEEDS: temporal-elasticsearch ES_VERSION: v7 @@ -823,8 +823,8 @@ services: restart: unless-stopped logging: *default-logging environment: - TEMPORAL_UIADDRESS: temporal:7233 - TEMPORAL_UICORS_ORIGINS: http://localhost:3000 + TEMPORAL_ADDRESS: temporal:7233 + TEMPORAL_CORS_ORIGINS: http://localhost:3000 depends_on: temporal: condition: service_healthy diff --git a/scripts/07_final_report.sh b/scripts/07_final_report.sh index 7df2642..d82ed61 100755 --- a/scripts/07_final_report.sh +++ b/scripts/07_final_report.sh @@ -97,6 +97,9 @@ fi if is_profile_active "nocodb"; then echo -e " ${GREEN}*${NC} ${WHITE}NocoDB${NC}: Create your account on first login" fi +if is_profile_active "postiz"; then + echo -e " ${GREEN}*${NC} ${WHITE}Postiz${NC}: Create your account on first login" +fi if is_profile_active "gost"; then echo -e " ${GREEN}*${NC} ${WHITE}Gost Proxy${NC}: Routing AI traffic through external proxy" fi diff --git a/scripts/databases.sh b/scripts/databases.sh index f7aed4b..eba6fb2 100755 --- a/scripts/databases.sh +++ b/scripts/databases.sh @@ -30,6 +30,8 @@ INIT_DB_DATABASES=( "lightrag" "nocodb" "postiz" + "temporal" + "temporal_visibility" "waha" )