mirror of
https://github.com/azaion/admin.git
synced 2026-04-22 05:26:34 +00:00
e94842d330
- Revised coding standards to emphasize readability, meaningful comments, and test verification. - Adjusted test coverage thresholds to 75% for business logic and clarified expectations for test scenarios. - Enhanced guidelines for handling skipped tests, emphasizing the need for investigation and resolution. - Updated commit message format and length requirements for better adherence to Git conventions. Made-with: Cursor
10 lines
496 B
Plaintext
10 lines
496 B
Plaintext
---
|
|
description: Rules for installation and provisioning scripts
|
|
globs: scripts/**/*.sh
|
|
alwaysApply: false
|
|
---
|
|
|
|
# Automation Scripts
|
|
|
|
- Automate everything that can be automated. If a dependency can be downloaded and installed, do it automatically — never require the user to manually download and set up prerequisites.
|
|
- Use sensible defaults for paths and configuration (e.g. `/opt/` for system-wide tools). Allow overrides via environment variables for users who need non-standard locations. |