This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SifasTeamBuild.sublime-project
91 lines (82 loc) · 2.78 KB
/
SifasTeamBuild.sublime-project
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"folders":
[
{
"file_exclude_patterns":
[
"*.sqlite"
],
"folder_exclude_patterns":
[
"dist/build-live",
"dist/build-prod*",
"wanha",
"res",
"public/js/vendor"
],
"path": "."
}
],
"syntax_override": {
"\\.html$": ["Jinja2", "Syntaxes", "HTML (Jinja2)"]
},
"build_systems":
[
{
"name": "Python Dev Build",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --dev --no-colored-output",
"env": {"PYTHONIOENCODING": "utf-8"},
// "target": "ansi_color_build",
// "syntax": "Packages/ANSIescape/ANSI.tmLanguage",
"working_dir": "$project_path",
"quiet": false,
"variants":
[
{
"name": "Force Render",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --dev --force-render --no-colored-output"
},
{
"name": "Force Update",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --dev --force-build --no-colored-output"
},
{
"name": "Force Update, History from File",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --dev --force-build --history-from-file --no-colored-output"
},
{
"name": "Rebuild Atlas",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --dev -ra --no-colored-output"
},
{
"name": "Force Render, Production Build",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildCardRotations.py\" --force-render --no-colored-output"
},
]
},
{
"name": "Python IDOL BUILD TEST",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"shell_cmd": "pipenv run python -u \"$project_path\\BuildIdolTest.py\"",
"env": {"PYTHONIOENCODING": "utf-8"},
"working_dir": "$project_path",
"quiet": false,
},
{
"name": "Python Only Current File",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"shell_cmd": "pipenv run python -u \"$file\"",
"env": {"PYTHONIOENCODING": "utf-8"},
"working_dir": "$project_path",
"quiet": false
},
{
"name": "Vagrant SSH Test",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"shell_cmd": "plink -l vagrant -pw vagrant -P 2222 -batch 127.0.0.1 \"~/sifas/vagrant-build.sh --dev --no-colored-output\"",
"working_dir": "$project_path",
"quiet": false,
},
]
}