Bernardo Magri 9d425aee58 major refactor from Jules 1 ヶ月 前
..
README.md cd92b269df Organize repository structure for better maintainability 1 ヶ月 前
build.sh 5db16fd31a fix(gtk): redraw all windows after input 1 ヶ月 前
clean.sh 9d425aee58 major refactor from Jules 1 ヶ月 前
test.sh 1b4e424f71 Fix script shebangs for better portability 1 ヶ月 前

README.md

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