mirror of https://gitee.com/stylefeng/roses
parent
038aa54ee3
commit
9c3086cb98
|
@ -33,8 +33,8 @@ public class DefaultStrategyImpl implements ConfigInitStrategyApi {
|
|||
public List<ConfigInitItem> getInitConfigs() {
|
||||
ArrayList<ConfigInitItem> configInitItems = new ArrayList<>();
|
||||
configInitItems.add(new ConfigInitItem("系统名称", "SYS_SYSTEM_NAME", "Guns快速开发平台", "系统名称"));
|
||||
configInitItems.add(new ConfigInitItem("服务部署的访问地址", "SYS_SERVER_DEPLOY_HOST", "http://localhost:8080", "一般用在拼接文件的访问地址"));
|
||||
configInitItems.add(new ConfigInitItem("websocket的ws-url", "WEB_SOCKET_WS_URL", "ws://localhost:8080/webSocket/{token}", "websocket模块的连接url,用在消息通知模块"));
|
||||
configInitItems.add(new ConfigInitItem("服务部署的访问地址", "SYS_SERVER_DEPLOY_HOST", "http://localhost:8080", "一般用在拼接文件的访问地址,注意,一定要配置连到后台的地址"));
|
||||
configInitItems.add(new ConfigInitItem("websocket的ws-url", "WEB_SOCKET_WS_URL", "ws://localhost:8080/webSocket/{token}", "websocket模块的连接url,用在消息通知模块,注意,一定要配置连到后台的地址"));
|
||||
configInitItems.add(new ConfigInitItem("auth认证用的jwt秘钥", "SYS_AUTH_JWT_SECRET", RandomUtil.randomString(30), "用于校验登录token"));
|
||||
configInitItems.add(new ConfigInitItem("Druid控制台账号", "SYS_DRUID_ACCOUNT", "admin", "Druid控制台账号"));
|
||||
configInitItems.add(new ConfigInitItem("Druid控制台账号密码", "SYS_DRUID_PASSWORD", RandomUtil.randomString(20), "Druid控制台账号密码"));
|
||||
|
|
Loading…
Reference in New Issue