-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbox.json
More file actions
executable file
·47 lines (47 loc) · 1.57 KB
/
box.json
File metadata and controls
executable file
·47 lines (47 loc) · 1.57 KB
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
{
"name":"My ColdBox App",
"version":"1.0.0",
"author":"You",
"location":"forgeboxStorage",
"slug":"my-coldbox-app",
"createPackageDirectory":false,
"type":"mvc",
"keywords":"",
"homepage":"",
"documentation":"",
"repository":{
"type":"",
"url":""
},
"bugs":"",
"shortDescription":"",
"contributors":[],
"ignore":[],
"dependencies":{
"coldbox":"be",
"cbwire":"be"
},
"devDependencies":{
"testbox":"*",
"commandbox-boxlang":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"coldbox":"coldbox/",
"testbox":"testbox/",
"cbwire":"modules/cbwire/"
},
"scripts":{
"postInstall":"pathExists .env || cp .env.example .env && package set ignore=[]",
"format":"cfformat run config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.bx ./.cfformat.json --overwrite",
"format:check":"cfformat check config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.bx ./.cfformat.json",
"format:watch":"cfformat watch path='config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.bx' settingsPath='.cfformat.json'",
"docker:build":"!docker build --no-cache -t my-coldbox-app -f ./docker/Dockerfile ./",
"docker:run":"!docker run -it -p 8080:8080 my-coldbox-app",
"docker:bash":"!docker run -it my-coldbox-app /bin/bash",
"docker:stack":"!docker compose -f docker/docker-compose.yaml ${1}"
},
"testbox":{
"runner":"/tests/runner.bxm"
}
}