README.md 699 B

Scripts

Utility scripts for Lumacs development and maintenance.

Available Scripts

Build Scripts

  • build.sh - Build the Lumacs project
  • clean.sh - Clean build artifacts and temporary files
  • test.sh - Run tests and basic functionality checks

Usage

Make sure scripts are executable (they should be by default):

chmod +x scripts/*.sh

Building

./scripts/build.sh

Testing

./scripts/test.sh

Cleaning

./scripts/clean.sh

Adding New Scripts

When adding new utility scripts:

  1. Place them in this directory
  2. Make them executable with chmod +x
  3. Follow the naming convention: action.sh
  4. Add documentation here