Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
midjourney-proxy
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
徐少华
midjourney-proxy
Commits
3c350387
Commit
3c350387
authored
May 26, 2020
by
吴博
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add sentry
parent
1ab28cfa
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
24 additions
and
4 deletions
+24
-4
public_system.properties
...n-config/src/main/resources.prod/public_system.properties
+3
-2
public_system.properties
...n-config/src/main/resources.test/public_system.properties
+1
-0
public_system.properties
...on-config/src/main/resources.uat/public_system.properties
+3
-2
SystemEnvEnum.java
.../src/main/java/com/pcloud/common/enums/SystemEnvEnum.java
+17
-0
No files found.
pcloud-common-config/src/main/resources.prod/public_system.properties
View file @
3c350387
...
...
@@ -115,8 +115,9 @@ group.luck.url = https://app.5rs.me/luck/W23/C2/A0/groupluck
manage_official_id
=
22
self.plan.feedback.email
=
leibin@dcrays.cn
book.dsn
=
https://d2becfd676ab455089f696495833e9c7:ac7a6a2af65e4ce3bd231c2f6b5f4b26@lgsentry.chubanyun.me/8
usercenter.dsn
=
https://4cf5c887e25844df852813576a663fc3:a1cb6dde8d19416f8698d9f557e30e09@lgsentry.chubanyun.me/9
book.dsn
=
http://1eff2351be90426fa06a35d7350dce52@192.168.8.238:9000/5
usercenter.dsn
=
http://b2def887d85e40d9a3d09e67b9c7c26f@192.168.8.238:9000/6
readercenter.dsn
=
http://49e32b48c3414438ab25beae2cdfd467@192.168.8.238:9000/3
mini.appid.uat
=
wx125b30e53bf22476
mini.appsecret.uat
=
1eb5d1a2e1b262ea8f41e733f664a40c
...
...
pcloud-common-config/src/main/resources.test/public_system.properties
View file @
3c350387
...
...
@@ -132,3 +132,4 @@ mini.appsecret.uat = 1eb5d1a2e1b262ea8f41e733f664a40c
mini.appid.prod
=
wxd951244ee206df89
mini.appsecret.prod
=
e3111585d219f7e96e35ef593b67ab2b
mini.official.account.id
=
777
pcloud-common-config/src/main/resources.uat/public_system.properties
View file @
3c350387
...
...
@@ -118,8 +118,9 @@ group.luck.url = https://app10035515.raysyun.com/luck/W35515/C35515/A0/groupluck
manage_official_id
=
22
self.plan.feedback.email
=
1143908462@qq.com
book.dsn
=
https://d2becfd676ab455089f696495833e9c7:ac7a6a2af65e4ce3bd231c2f6b5f4b26@lgsentry.chubanyun.me/8
usercenter.dsn
=
https://4cf5c887e25844df852813576a663fc3:a1cb6dde8d19416f8698d9f557e30e09@lgsentry.chubanyun.me/9
book.dsn
=
http://1eff2351be90426fa06a35d7350dce52@192.168.8.238:9000/5
usercenter.dsn
=
http://b2def887d85e40d9a3d09e67b9c7c26f@192.168.8.238:9000/6
readercenter.dsn
=
http://49e32b48c3414438ab25beae2cdfd467@192.168.8.238:9000/3
mini.appid.uat
=
wx125b30e53bf22476
mini.appsecret.uat
=
1eb5d1a2e1b262ea8f41e733f664a40c
...
...
pcloud-common/src/main/java/com/pcloud/common/enums/SystemEnvEnum.java
0 → 100644
View file @
3c350387
package
com
.
pcloud
.
common
.
enums
;
public
enum
SystemEnvEnum
{
PROD
(
"prod"
),
// 生产
UAT
(
"uat"
),
// uat
TEST
(
"test"
),
// 测试
PREF
(
"pref"
);
//压测
/**
* 值
*/
public
final
String
value
;
SystemEnvEnum
(
String
value
)
{
this
.
value
=
value
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment