Files
open-im-server/scripts/path_info.sh
T

57 lines
1.6 KiB
Bash
Raw Normal View History

2023-08-16 10:55:25 +08:00
# Copyright © 2023 OpenIM. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2023-07-07 19:45:32 +08:00
# Don't put the space between "="
2023-07-07 21:27:07 +08:00
openim_msggateway="openim-msggateway"
2023-07-09 14:16:19 +08:00
msg_gateway_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-06-30 23:22:58 +08:00
2023-07-07 21:27:07 +08:00
msg_name="openim-rpc-msg"
2023-07-09 14:16:19 +08:00
msg_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-06-30 23:22:58 +08:00
2023-07-07 19:45:32 +08:00
push_name="openim-push"
2023-07-09 14:16:19 +08:00
push_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-07-09 17:12:16 +08:00
push_source_root="$OPENIM_ROOT/cmd/openim-push/"
2023-06-30 23:22:58 +08:00
2023-07-09 17:12:16 +08:00
openim_msgtransfer="openim-msgtransfer"
2023-07-09 14:16:19 +08:00
msg_transfer_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-06-30 23:22:58 +08:00
msg_transfer_service_num=4
2023-07-07 21:27:07 +08:00
cron_task_name="openim-crontask"
2023-07-09 14:16:19 +08:00
cron_task_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-06-30 23:22:58 +08:00
2023-07-09 16:51:43 +08:00
cmd_utils_name="openim-cmdutils"
2023-07-09 14:16:19 +08:00
cmd_utils_binary_root="$OPENIM_ROOT/$BIN_DIR"
2023-06-30 23:22:58 +08:00
2023-07-07 19:45:32 +08:00
# Global configuration file default dir
2023-07-09 15:28:19 +08:00
config_path="$OPENIM_ROOT/config/config.yaml"
2023-07-11 21:13:06 +08:00
configfile_path="$OPENIM_ROOT/config"
2023-06-30 23:22:58 +08:00
2023-07-07 19:45:32 +08:00
# service filename
service_names=(
# api service filename
"openim-api"
# rpc service filename
2023-07-07 21:27:07 +08:00
"openim-rpc-user"
"openim-rpc-friend"
"openim-rpc-group"
"openim-rpc-auth"
"openim-rpc-conversation"
"openim-rpc-third"
"openim-crontask"
"${openim_msggateway}"
"${openim_msgtransfer}"
2023-07-07 19:45:32 +08:00
"${msg_name}"
"${push_name}"
# "${sdk_server_name}"
2023-08-11 14:41:40 +08:00
)