Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
go-cqhttp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
go-cqhttp
Commits
e469346f
Commit
e469346f
authored
Aug 02, 2020
by
SakuraYuyuko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACCESS_TOKEN | ENABLE_DB 可使用环境变量覆盖
ENABLE_DB 默认为 true
parent
fbc14e85
Pipeline
#416
passed with stages
in 5 minutes and 38 seconds
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
main.go
main.go
+14
-0
No files found.
main.go
View file @
e469346f
...
...
@@ -132,6 +132,20 @@ func main() {
log
.
Fatalf
(
"加载设备信息失败: %v"
,
err
)
}
}
if
os
.
Getenv
(
"ACCESS_TOKEN"
)
!=
""
{
conf
.
AccessToken
=
os
.
Getenv
(
"ACCESS_TOKEN"
)
log
.
Infof
(
"已覆盖 ACCESS_TOKEN 为 "
+
os
.
Getenv
(
"ACCESS_TOKEN"
))
}
if
os
.
Getenv
(
"ENABLE_DB"
)
!=
"false"
&&
os
.
Getenv
(
"ENABLE_DB"
)
!=
""
{
conf
.
EnableDB
=
true
log
.
Infof
(
"已覆盖 ENABLE_DB 为 true"
)
}
else
if
os
.
Getenv
(
"ENABLE_DB"
)
==
"false"
{
conf
.
EnableDB
=
false
log
.
Infof
(
"已覆盖 ENABLE_DB 为 false"
)
}
log
.
Info
(
"Bot将在5秒后登录并开始信息处理, 按 Ctrl+C 取消."
)
time
.
Sleep
(
time
.
Second
*
5
)
log
.
Info
(
"开始尝试登录并同步消息..."
)
...
...
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