forked from sh-edraft.de/sh_discord_bot
25 lines
1.1 KiB
JSON
25 lines
1.1 KiB
JSON
{
|
|
"WorkspaceSettings": {
|
|
"DefaultProject": "bot",
|
|
"Projects": {
|
|
"bot": "src/bot/bot.json",
|
|
"bot-core": "src/bot_core/bot-core.json",
|
|
"bot-data": "src/bot_data/bot-data.json",
|
|
"database": "src/modules/database/database.json",
|
|
"base": "src/modules/base/base.json",
|
|
"permission": "src/modules/permission/permission.json",
|
|
"boot-log": "src/modules/boot_log/boot-log.json"
|
|
},
|
|
"Scripts": {
|
|
"prod": "export KDB_ENVIRONMENT=production; export KDB_NAME=kdb-dev; cpl start;",
|
|
"stage": "export KDB_ENVIRONMENT=staging; export KDB_NAME=kdb-dev; cpl start;",
|
|
"dev": "export KDB_ENVIRONMENT=development; export KDB_NAME=kdb-dev; cpl start;",
|
|
|
|
"ba": "cpl build-all",
|
|
"build-all": "cpl build-bot; cpl build-bot-core; cpl build-bot-data;",
|
|
"build-bot": "echo 'Build bot'; cd ./src/bot; cpl build; cd ../../;",
|
|
"build-bot-core": "echo 'Build bot-core'; cd ./src/bot_core; cpl build; cd ../../;",
|
|
"build-bot-data": "echo 'Build bot-data'; cd ./src/bot_data; cpl build; cd ../../;"
|
|
}
|
|
}
|
|
} |