-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathdefine.go
48 lines (37 loc) · 1.2 KB
/
define.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package define
import (
"os"
"github.com/dgrijalva/jwt-go"
)
// JwtKey
type UserClaim struct {
Id int
Identity string
Name string
Email string
jwt.StandardClaims
}
var JwtKey = "gcloud-key"
var MailPassword = os.Getenv("MAIL_PASSWORD")
var RedisPassword = os.Getenv("REDIS_PASSWORD")
var RedisAddr = os.Getenv("REDIS_ADDR")
var MySQLAddr = os.Getenv("MYSQL_ADDR")
var MySQLPassword = os.Getenv("MYSQL_PASSWORD")
// CodeLength 验证码长度
var CodeLength = 6
// CodeExpire 验证码过期时间(s)
var CodeExpire = 300
// TencentSecretKey 腾讯云对象存储
var TencentSecretKey = os.Getenv("TENCENT_SECRETKEY")
var TencentSecretID = os.Getenv("TENCENT_SECRETID")
var CosBucket = "https://gcloud-1303456836.cos.ap-chengdu.myqcloud.com"
var CosFolderName = "gcloud"
var AvatarBaseUrl = CosBucket + "/" + CosFolderName + "/avatars/"
// PageSize 分页的默认参数
var PageSize = 20
var Datetime = "2000-01-01 00:00:01"
var TokenExpire = 60 * 60 * 24 * 3 // 3 days
var RefreshTokenExpire = 60 * 60 * 24 * 7 // 7 days
var UserRepositoryMaxSize = 1000 * 1024 * 1024 // 1GB
var PublicRepositoryMaxSize = 500 * 1024 * 1024 // 0.5GB
var UserRepositoryMinSize = 200 * 1024 * 1024 // 200MB