Improved project files

This commit is contained in:
Sven Heidemann 2021-11-26 07:55:13 +01:00
parent e69955e6d2
commit afd024e991
6 changed files with 12 additions and 11 deletions

View File

@ -6,13 +6,14 @@
"gismo-cli": "src/gismo_cli/gismo-cli.json", "gismo-cli": "src/gismo_cli/gismo-cli.json",
"gismo-core": "src/gismo_core/gismo-core.json", "gismo-core": "src/gismo_core/gismo-core.json",
"gismo-db": "src/gismo_db/gismo_db.json", "gismo-db": "src/gismo_db/gismo_db.json",
"database": "src/database/database.json", "cpl-extension": "src/cpl_extension/cpl-extension.json",
"modules-core": "src/modules_core/modules-core.json", "modules-core": "src/modules_core/modules-core.json",
"boot-log": "src/modules/boot_log/boot-log.json", "boot-log": "src/modules/boot_log/boot-log.json",
"level-generator": "tools/level_generator/level-generator.json", "level-generator": "tools/level_generator/level-generator.json",
"ontime-calculator": "tools/ontime_calculator/ontime-calculator.json" "ontime-calculator": "tools/ontime_calculator/ontime-calculator.json"
}, },
"Scripts": { "Scripts": {
"build-all": "cd src/gismo; echo \"gismo:\"; cpl build; cd ../gismo_cli; echo \"gismo-cli:\"; cpl build; cd ../gismo_core; echo \"gismo-core:\"; cpl build; cd ../gismo_db; echo \"gismo-db:\"; cpl build; cd ../cpl_extension; echo \"cpl_extension:\"; cpl build; cd ../modules_core; echo \"modules-core:\"; cpl build;",
"pre-start": "echo '!WARNING! You should start with the right environment!\nRun cpl start-ENV\nSee workspace for more details.'; sleep 2", "pre-start": "echo '!WARNING! You should start with the right environment!\nRun cpl start-ENV\nSee workspace for more details.'; sleep 2",
"pre-dev-start": "echo 'development:'; ", "pre-dev-start": "echo 'development:'; ",
"dev-start": "export GISMO_ENVIRONMENT=development; export GISMO_NAME=Gismo-dev; cpl start", "dev-start": "export GISMO_ENVIRONMENT=development; export GISMO_NAME=Gismo-dev; cpl start",

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
database sh-edraft Gismo - database core cpl-extension sh-edraft Gismo - cpl extension - database core
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
sh-edraft Dicord bot Gismo - database implementation of cpl.database sh-edraft Dicord bot Gismo - database implementation of cpl.database
@ -11,7 +11,7 @@ sh-edraft Dicord bot Gismo - database implementation of cpl.database
""" """
__title__ = 'database' __title__ = 'cpl_extension'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de' __copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'

View File

@ -1,6 +1,6 @@
{ {
"ProjectSettings": { "ProjectSettings": {
"Name": "database", "Name": "cpl-extension",
"Version": { "Version": {
"Major": "0", "Major": "0",
"Minor": "1", "Minor": "1",
@ -8,7 +8,7 @@
}, },
"Author": "Sven Heidemann", "Author": "Sven Heidemann",
"AuthorEmail": "sven.heidemann@sh-edraft.de", "AuthorEmail": "sven.heidemann@sh-edraft.de",
"Description": "sh-edraft Gismo - database core", "Description": "sh-edraft Gismo - cpl extension - database core",
"LongDescription": "sh-edraft Dicord bot Gismo - database implementation of cpl.database", "LongDescription": "sh-edraft Dicord bot Gismo - database implementation of cpl.database",
"URL": "https://www.sh-edraft.de", "URL": "https://www.sh-edraft.de",
"CopyrightDate": "2021 - 2022", "CopyrightDate": "2021 - 2022",
@ -29,8 +29,8 @@
"ProjectType": "library", "ProjectType": "library",
"SourcePath": "", "SourcePath": "",
"OutputPath": "../../dist", "OutputPath": "../../dist",
"Main": "database.main", "Main": "",
"EntryPoint": "database", "EntryPoint": "",
"IncludePackageData": false, "IncludePackageData": false,
"Included": [], "Included": [],
"Excluded": [ "Excluded": [

View File

@ -1,17 +1,17 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
""" """
modules/boot-log sh-edraft Gismo - Boot log gismo sh-edraft Gismo
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
sh-edraft Dicord bot Gismo - Boot log sh-edraft Dicord bot Gismo
:copyright: (c) 2021 - 2022 sh-edraft.de :copyright: (c) 2021 - 2022 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
__title__ = 'boot_log' __title__ = 'modules.boot_log'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de' __copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'

View File

@ -28,7 +28,7 @@
"BuildSettings": { "BuildSettings": {
"ProjectType": "library", "ProjectType": "library",
"SourcePath": "", "SourcePath": "",
"OutputPath": "../../dist", "OutputPath": "../../../dist",
"Main": "modules/_boot_log.main", "Main": "modules/_boot_log.main",
"EntryPoint": "modules/boot-log", "EntryPoint": "modules/boot-log",
"IncludePackageData": false, "IncludePackageData": false,