-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbox.json
60 lines (60 loc) · 1.84 KB
/
box.json
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
{
"name":"ColdBox Modern APP Template",
"shortDescription":"",
"version":"7.2.0",
"author":"You",
"location":"forgeboxStorage",
"slug":"cbtemplate-modern",
"createPackageDirectory":false,
"type":"mvc",
"keywords":[],
"repository":{
"type":"",
"url":""
},
"contributors":[],
"ignore":[
"changelog.md",
".github/**"
],
"dependencies":{
"coldbox":"^7.0.0",
"cbdebugger":"^4.3.0+5"
},
"devDependencies":{
"testbox":"^5.0.0",
"commandbox-dotenv":"*",
"commandbox-cfconfig":"*",
"commandbox-cfformat":"*"
},
"installPaths":{
"coldbox":"lib/coldbox/",
"cbdebugger":"modules/cbdebugger/",
"testbox":"lib/testbox/"
},
"scripts":{
"postPublish":"!git push origin --tags",
"postInstall":"pathExists .env || cp .env.example .env",
"format":"cfformat run app/**/*.cfc,tests/specs/,*.cfc --overwrite",
"format:check":"cfformat check app/**/*.cfc,tests/specs/,*.cfc ./.cfformat.json",
"format:watch":"cfformat watch path='app/**/*.cfc,tests/specs/,*.cfc' settingsPath='.cfformat.json'",
"build:docker":"!docker build --no-cache -t my-coldbox-app -f ./Dockerfile ./",
"run:docker":"!docker run -it -p 8080:8080 my-coldbox-app"
},
"testbox":{
"runner":"/tests/runner.cfm"
},
"cfmigrations":{
"migrationsDirectory":"resources/database/migrations",
"schema":"${DB_SCHEMA}",
"connectionInfo":{
"bundleName":"${DB_BUNDLENAME}",
"bundleVersion":"${DB_BUNDLEVERSION}",
"password":"${DB_PASSWORD}",
"connectionString":"${DB_CONNECTIONSTRING}",
"class":"${DB_CLASS}",
"username":"${DB_USER}"
},
"defaultGrammar":"AutoDiscover@qb"
}
}