Files
finance/docker-entrypoint.sh
T
Ümit Tunç 5d6b9a2f48 Add docker-entrypoint.sh for API documentation generation
- Introduced a new script to automate the generation of API documentation using the `php artisan scribe:generate` command.
- This addition streamlines the process of keeping API documentation up-to-date, enhancing developer experience and project maintainability.
2025-01-20 22:11:20 +03:00

6 lines
115 B
Bash

#!/bin/bash
# API dokümantasyonunu güncelle
php artisan scribe:generate
echo "API dokümantasyonu güncellendi"