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.
This commit is contained in:
Ümit Tunç
2025-01-20 22:11:20 +03:00
parent 700bfb2994
commit 5d6b9a2f48
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
# API dokümantasyonunu güncelle
php artisan scribe:generate
echo "API dokümantasyonu güncellendi"