10 lines
891 B
Markdown
10 lines
891 B
Markdown
|
|
When a task is completed in CLQMS backend, follow these wrap-up steps:
|
||
|
|
|
||
|
|
1. Run relevant tests (`./vendor/bin/phpunit` or targeted `php spark test --filter ...`).
|
||
|
|
2. If migrations changed, run `php spark migrate` / `php spark migrate:rollback` locally and ensure schema updates succeed.
|
||
|
|
3. After editing OpenAPI documentation (YAML files or controller mappings), regenerate `public/api-docs.bundled.yaml` via `node public/bundle-api-docs.js` and check it into Git.
|
||
|
|
4. Confirm code adheres to PSR-12/CodeIgniter conventions (strict types, response format, transactions, guard clauses) before committing.
|
||
|
|
5. Review `git status/diff` to ensure only intended files are staged; do not commit `.env` or other secret files.
|
||
|
|
6. For shared logic changes, double-check lookup JSON cache use and response logging.
|
||
|
|
|
||
|
|
These steps keep the API consistent, documented, and tested before merging or deploying.
|