feat: initial release, refs NOISSUE
Some checks failed
Upload Python Package / Create Release (push) Successful in 37s
Upload Python Package / deploy (push) Failing after 38s

This commit is contained in:
2026-04-02 01:42:26 +02:00
parent 0b1384279d
commit e824475872
44 changed files with 4435 additions and 30 deletions

23
test-project/test/TestApp/.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.env
.venv/
node_modules/
.env
build/
dist/
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
.git

View File

@@ -0,0 +1,11 @@
# TestApp
A test application
## Features
- feature1
- feature2
## Tech Stack
- python
- fastapi

View File

@@ -0,0 +1,2 @@
# Generated by AI Software Factory
print('Hello, World!')

View File

@@ -0,0 +1,23 @@
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.env
.venv/
node_modules/
.env
build/
dist/
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
.git

View File

@@ -0,0 +1,11 @@
# test-project
Test project description
## Features
- feature-1
- feature-2
## Tech Stack
- python
- fastapi

View File

@@ -0,0 +1,2 @@
# Generated by AI Software Factory
print('Hello, World!')

23
test-project/test/test/.gitignore vendored Normal file
View File

@@ -0,0 +1,23 @@
# Python
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.env
.venv/
node_modules/
.env
build/
dist/
.pytest_cache/
.mypy_cache/
.coverage
htmlcov/
.idea/
.vscode/
*.swp
*.swo
*~
.DS_Store
.git

View File

@@ -0,0 +1,7 @@
# Test
Test
## Features
## Tech Stack

View File

@@ -0,0 +1,2 @@
# Generated by AI Software Factory
print('Hello, World!')