-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfxmanifest.lua
64 lines (47 loc) · 1.23 KB
/
fxmanifest.lua
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
fx_version "cerulean"
games { "gta5", "rdr3" }
lua54 "yes"
description "Basic Angular & Lua boilerplate"
author "Fractal Game Studios"
version "1.0.0"
repository 'https://github.com/FRACTAL-GAME-STUDIOS/fractal_boilerplate_lua_angular'
ui_page "web/dist/index.html"
files {
"web/dist/index.html",
"web/dist/**/*",
}
client_scripts {
"bridge/**/**/cl_main.lua",
"bridge/**/cl_main.lua",
"bridge/**/module_*.lua",
"core/client/cl_main.lua",
"core/client/modules/*.lua",
"core/client/modules/**/*.lua",
"modules/**/client/cl_main.lua",
"modules/**/client/cl_utils.lua",
}
server_scripts {
'@oxmysql/lib/MySQL.lua',
"bridge/**/**/sv_main.lua",
"bridge/**/sv_main.lua",
"modules/**/server/sv_main.lua",
"core/server/sv_main.lua",
"core/server/modules/*.lua",
"core/server/modules/**/*.lua",
}
shared_scripts {
'@ox_lib/init.lua',
"core/shared/sh_main.lua",
"core/shared/sh_config.lua",
"locales/*.lua",
"modules/**/shared/sh_main.lua",
"modules/**/shared/sh_*.lua",
"modules/**/shared/modules/module_*.lua",
"shared/sh_main.lua",
"shared/sh_functions.lua"
}
file {
'stream/**/*.ytyp',
'web/assets/**/*',
}
data_file 'DLC_ITYP_REQUEST' 'stream/**/*.ytyp'