From 3248513c6781b00969fa4f528d24b846649cd135 Mon Sep 17 00:00:00 2001 From: Kalpani Ekanayake Date: Wed, 13 May 2026 15:07:55 +0530 Subject: [PATCH 1/2] Add troubleshooting note for Go build issue --- .../deploy-an-application-with-buildpacks.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md b/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md index c786629ed5..908d922a19 100644 --- a/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md +++ b/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md @@ -187,3 +187,20 @@ e.g.,
- java -jar target/sample.jar - node app.js - php -S 0.0.0.0:8000 index.php + + +## Troubleshooting Go build issues + +If you encounter errors similar to: + +```bash +package xxx/prisma/db is not found +``` + +ensure that: + +- all generated Prisma client files are committed to the repository +- the correct Go module path is configured +- generated directories are included before deployment + +This issue can occur during Buildpack-based deployments in Choreo when generated Prisma files are excluded from the Git repository. \ No newline at end of file From bffe6de41b423a076805204d16acbb3512daaaf3 Mon Sep 17 00:00:00 2001 From: Kalpani Ekanayake Date: Wed, 13 May 2026 15:20:09 +0530 Subject: [PATCH 2/2] Improve Go build troubleshooting example --- .../develop-components/deploy-an-application-with-buildpacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md b/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md index 908d922a19..3f01670523 100644 --- a/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md +++ b/en/developer-docs/docs/develop-components/deploy-an-application-with-buildpacks.md @@ -194,7 +194,7 @@ e.g.,
If you encounter errors similar to: ```bash -package xxx/prisma/db is not found +package meal-planner-backend/prisma/db is not found ``` ensure that: