Add devscripts/ to .gitignore and update instructions

Updated .github/copilot-instructions.md to specify that development/helper scripts should be stored in the devscripts/ folder. Added devscripts/ to .gitignore to prevent local development scripts from being committed.
This commit is contained in:
João Vitória Silva
2025-10-16 16:49:16 +01:00
parent f358faa085
commit f0cb46ab98
2 changed files with 5 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ Always reference these instructions first and fallback to search or bash command
- Prefer using existing validation, constants, and type files rather than creating new ones.
- Use the timing benchmarks in this document to evaluate build success or performance anomalies.
- **Documentation files:** When creating new development documentation files (e.g., `BACKEND_AUTH_DEVELOPMENT_LOG.md`, `OBSERVABILITY_STRATEGY.md`), store them in the `devdocs/` folder. This folder is gitignored and used for local development documentation that should not be committed to the repository.
- **Development/helper scripts:** When creating new development/helper scripts, store them in the `devscripts/` folder. This folder is gitignored and used for local development scripts that should not be committed to the repository.
---