From 5d6b9a2f48de5304f944724071beb26b988b0065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Cmit=20Tun=C3=A7?= Date: Mon, 20 Jan 2025 22:11:20 +0300 Subject: [PATCH] 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. --- docker-entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 docker-entrypoint.sh diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh new file mode 100644 index 0000000..e9a5e0b --- /dev/null +++ b/docker-entrypoint.sh @@ -0,0 +1,6 @@ +#!/bin/bash + + +# API dokümantasyonunu güncelle +php artisan scribe:generate +echo "API dokümantasyonu güncellendi" \ No newline at end of file