Bugfixes with live development server
This commit is contained in:
0
src/tests/custom/cpl-test/LICENSE
Normal file
0
src/tests/custom/cpl-test/LICENSE
Normal file
0
src/tests/custom/cpl-test/README.md
Normal file
0
src/tests/custom/cpl-test/README.md
Normal file
38
src/tests/custom/cpl-test/cpl.json
Normal file
38
src/tests/custom/cpl-test/cpl.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"ProjectSettings": {
|
||||
"Name": "cpl-test",
|
||||
"Version": {
|
||||
"Major": "0",
|
||||
"Minor": "0",
|
||||
"Micro": "0"
|
||||
},
|
||||
"Author": "",
|
||||
"AuthorEmail": "",
|
||||
"Description": "",
|
||||
"LongDescription": "",
|
||||
"URL": "",
|
||||
"CopyrightDate": "",
|
||||
"CopyrightName": "",
|
||||
"LicenseName": "",
|
||||
"LicenseDescription": "",
|
||||
"Dependencies": [
|
||||
"sh_cpl==2021.4.1.post2"
|
||||
],
|
||||
"PythonVersion": ">=3.9.2",
|
||||
"Classifiers": []
|
||||
},
|
||||
"BuildSettings": {
|
||||
"SourcePath": "src",
|
||||
"OutputPath": "dist",
|
||||
"Main": "main",
|
||||
"EntryPoint": "cpl-test",
|
||||
"IncludePackageData": "False",
|
||||
"Included": [],
|
||||
"Excluded": [
|
||||
"*/__pycache__",
|
||||
"*/logs",
|
||||
"*/tests"
|
||||
],
|
||||
"PackageData": {}
|
||||
}
|
||||
}
|
10
src/tests/custom/cpl-test/src/main.py
Normal file
10
src/tests/custom/cpl-test/src/main.py
Normal file
@@ -0,0 +1,10 @@
|
||||
from cpl.console.console import Console
|
||||
|
||||
|
||||
def main():
|
||||
Console.write_line('Hello World')
|
||||
Console.write_line('Dies ist ein test')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
1
src/tests/custom/cpl-test/src/tests/__init__.py
Normal file
1
src/tests/custom/cpl-test/src/tests/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
# imports:
|
Reference in New Issue
Block a user