-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_data_template.ts
41 lines (39 loc) · 1.1 KB
/
config_data_template.ts
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
import { type ConfigData } from "./config_types"
import { type VersionsAvailable } from "./config"
export const config: ConfigData<VersionsAvailable> = {
logLevel: "WARN",
active: "vanilla",
list: {
"vanilla":{
"git": {
"branch": "master",
"commit": false,
"autoUpdate": false,
"lastCommit": ""
},
"folder": "path to your pokeemerald folder", // mandatory
"precursor": [ // optional
// the # here is to indicate we are only seeking the preprocessing macros in it
"#include/config/general.h"
]
},
"ER2.5":{
"git": {
"branch": "master"
},
"folder": "path your project pokeemerald folder",
"precursor": "#include/global.h"
}
},
versionFile: "dataOutput/versions.json",
server: {
port: 8080,
token: "",
version: "latest",
remote: {
owner: "",
repo: "",
branch: "",
}
}
}