From 34429846579cb8c6bb4263909ce6ac36390734ec Mon Sep 17 00:00:00 2001 From: douxu Date: Thu, 16 Oct 2025 17:48:03 +0800 Subject: [PATCH] Stop tracking config/config.yaml --- config/config.yaml | 70 ---------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 config/config.yaml diff --git a/config/config.yaml b/config/config.yaml deleted file mode 100644 index 8be7279..0000000 --- a/config/config.yaml +++ /dev/null @@ -1,70 +0,0 @@ -postgres: - host: "192.168.1.20" - port: 5432 - database: "demo" - user: "postgres" - password: "coslight" - -kafka: - servers: "localhost:9092" - port: 9092 - group_id: "modelRT" - topic: "" - auto_offset_reset: "earliest" - enable_auto_commit: "false" - read_message_time_duration: ”0.5s" - -# influxdb: -# host: "localhost" -# port: "8086" -# token: "lCuiQ316qlly3iFeoi1EUokPJ0XxW-5lnG-3rXsKaaZSjfuxO5EaZfFdrNGM7Zlrdk1PrN_7TOsM_SCu9Onyew==" -# org: "coslight" -# bucket: "wave_record" - -# zap logger config -logger: - mode: "development" - level: "debug" - filepath: "/Users/douxu/Workspace/coslight/modelRT/modelRT-%s.log" - maxsize: 1 - maxbackups: 5 - maxage: 30 - compress: false - -# ants config -ants: - parse_concurrent_quantity: 10 - rtd_receive_concurrent_quantity: 10 - -# redis config -locker_redis: - addr: "127.0.0.1:6379" - password: "" - db: 1 - poolsize: 50 - timeout: 10 - -storage_redis: - addr: "127.0.0.1:6379" - password: "" - db: 0 - poolsize: 50 - timeout: 10 - -# modelRT base config -base: - grid_id: 1 - zone_id: 1 - station_id: 1 - -# modelRT service config -service: - service_name: "modelRT" - secret_key: "modelrt_key" - -# dataRT api config -dataRT: - host: "http://127.0.0.1" - port: 8888 - polling_api: "datart/getPointData" - polling_api_method: "GET"