Dieses Dokument begleitet die Präsentation "Claude Code Features — Agentic Coding SKILLS". Es enthält pro Slide ausführliche Speaker Notes, Hintergrundwissen und Talking Points, damit du auch bei Nachfragen sicher bist.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Delivery | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| tags: | |
| - 'v*.*.*' | |
| jobs: | |
| build: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace App\Shared\Application\Routing; | |
| use ReflectionClass; | |
| use Symfony\Bundle\FrameworkBundle\Routing\RouteLoaderInterface; | |
| use Symfony\Component\Finder\Finder; | |
| use Symfony\Component\Routing\Attribute\Route as RouteAttribute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Configuration | |
| RELEASE_BRANCH ?= main | |
| CALVER_PATTERN ?= %Y.%m.%d | |
| .PHONY: release release-auto release-next-tag release-check | |
| # Interactive release (prompts for pull and confirmation) | |
| release: | |
| @RELEASE_BRANCH=$(RELEASE_BRANCH) CALVER_PATTERN=$(CALVER_PATTERN) ./scripts/release.sh release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| declare(strict_types=1); | |
| namespace App\Shared\Configuration; | |
| /** | |
| * Enum for configuration value types used in type assertions. | |
| */ | |
| enum ConfigValueType: string |
OlderNewer