This repository has been archived on 2022-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
sh_gismo/cpl-workspace.json

29 lines
1.5 KiB
JSON
Raw Normal View History

2021-11-15 00:52:49 +01:00
{
"WorkspaceSettings": {
"DefaultProject": "gismo",
"Projects": {
"gismo": "src/gismo/gismo.json",
"gismo-cli": "src/gismo_cli/gismo-cli.json",
"gismo-core": "src/gismo_core/gismo-core.json",
2021-11-28 23:34:45 +01:00
"gismo-data": "src/gismo_data/gismo-data.json",
2021-11-15 01:22:20 +01:00
"modules-core": "src/modules_core/modules-core.json",
"boot-log": "src/modules/boot_log/boot-log.json",
2021-11-15 01:18:33 +01:00
"level-generator": "tools/level_generator/level-generator.json",
2021-11-30 17:59:44 +01:00
"ontime-calculator": "tools/ontime_calculator/ontime-calculator.json",
2021-12-01 19:34:39 +01:00
"database": "src/modules/database/database.json",
"base": "src/modules/base/base.json"
2021-11-29 09:56:19 +01:00
},
"Scripts": {
"build-start": "cd src/gismo_cli; echo 'gismo-cli:'; cpl build; cd ../gismo; echo 'gismo:'; cpl build; cd ../../dist/gismo/build/gismo; bash gismo",
"bs": "cpl build-start",
"pre-build": "cd ../gismo_cli; echo 'gismo-cli:'; cpl build; echo 'gismo:'",
"pre-start": "if [ -z $GISMO_ENVIRONMENT ]; then echo '!WARNING! You should start with the right environment!\nRun cpl start-ENV\nSee workspace for more details.'; sleep 2; fi",
"pre-dev": "echo 'development:'; ",
"dev": "export GISMO_ENVIRONMENT=development; export GISMO_NAME=Gismo-dev; cpl start",
"pre-test": "echo 'staging:'; ",
"test": "export GISMO_ENVIRONMENT=staging; export GISMO_NAME=Gismo-test; cpl start",
"pre-prod": "echo 'production:'; ",
"prod": "export GISMO_ENVIRONMENT=production; export GISMO_NAME=Gismo-prod; cpl start"
2021-11-23 19:11:00 +01:00
}
2021-11-15 00:52:49 +01:00
}
}