Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

box.json 1.7 KB

You have to be logged in to leave a comment. Sign In
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
  1. {
  2. "name":"TaskProject",
  3. "version":"1.0.0",
  4. "author":"You",
  5. "location":"forgeboxStorage",
  6. "slug":"taskproject",
  7. "createPackageDirectory":false,
  8. "type":"mvc",
  9. "keywords":"",
  10. "homepage":"",
  11. "documentation":"",
  12. "repository":{
  13. "type":"",
  14. "url":""
  15. },
  16. "bugs":"",
  17. "shortDescription":"",
  18. "contributors":[],
  19. "ignore":[],
  20. "devDependencies":{
  21. "testbox":"^5.0.0",
  22. "commandbox-dotenv":"*",
  23. "commandbox-cfconfig":"*",
  24. "commandbox-cfformat":"*"
  25. },
  26. "installPaths":{
  27. "coldbox":"coldbox/",
  28. "testbox":"testbox/",
  29. "BCrypt":"modules/BCrypt/",
  30. "cbjavaloader":"modules/cbjavaloader/"
  31. },
  32. "dependencies":{
  33. "coldbox":"^7.0.0",
  34. "BCrypt":"^3.1.0+4",
  35. "cbjavaloader":"^2.1.1+8"
  36. },
  37. "scripts":{
  38. "postInstall":"pathExists .env || cp .env.example .env && package set ignore=[]",
  39. "format":"cfformat run config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc ./.cfformat.json --overwrite",
  40. "format:check":"cfformat check config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc ./.cfformat.json",
  41. "format:watch":"cfformat watch path='config/,handlers/,interceptors/,models/,modules_app/,tests/specs/,*.cfc' settingsPath='.cfformat.json'",
  42. "docker:build":"!docker build --no-cache -t my-coldbox-app -f ./build/Dockerfile ./",
  43. "docker:run":"!docker run -it -p 8080:8080 my-coldbox-app",
  44. "docker:bash":"!docker run -it my-coldbox-app /bin/bash",
  45. "docker:stack":"!docker compose -f build/docker-compose.yaml ${1}"
  46. },
  47. "testbox":{
  48. "runner":"/tests/runner.cfm"
  49. }
  50. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...