-
Notifications
You must be signed in to change notification settings - Fork 8
/
.env.example
68 lines (51 loc) · 1.19 KB
/
.env.example
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_VER=1.3
DB_HOST=127.0.0.1
DB_DATABASE=neuoj_test
DB_USERNAME=neuoj
DB_PASSWORD=neuoj
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
MAIL_DRIVER=smtp
MAIL_HOST=smtp.163.com
MAIL_PORT=25
MAIL_PASSWORD=voidsx
MAIL_ENCRYPTION=tls
ABSPATH=localhost:8000/
RECAPTCHA_PUBLIC_KEY=key
RECAPTCHA_PRIVATE_KEY=key
#Custom Defined Magic Number
CONTEST_PENDING=0
CONTEST_RUNNING=1
CONTEST_ENDED=-1
CONTEST_IN_REGISTER=2
CONTEST_NOT_IN_REGISTER=3
BALLOON_SEND=1
BALLOON_DISCARD=2
BALLOON_DONE=1
BALLOON_PENDING=0
CAS_HOST=202.118.93.101
CAS_PORT=443
CAS_URI=/cas
#SIM similarity tester configuration
# All Dirs are relative to public/ folder
SIMDIR=../sim # Do not add slashes at the end!
SUBMISSIONSDIR=../storage/app/submissions # Do not add slashes at the end!
#Domjudge Judge User Auth Configuration
JUDGE_USER=neuoj
JUDGE_PW=neuoj
#Configuration for Redis Cache Driver
REDIS_HOST=127.0.0.1
REDIS_PORT=6379
#Role Group Constant
GROUP_ADMIN=1
GROUP_TEACHER=2
GROUP_STUDENT=0
#Github issue configuration
GITHUB_ISSUE_SITE=/repos/VOID001/NEUOJ-bug-report/issues
GITHUB_TOKEN=neuoj
CURL_VERIFY=false