Bernardo Magri 6b964131b4 feat(lua): Expand LuaApi test coverage and fix sol2 binding issues 1 month ago
..
README.md cd92b269df Organize repository structure for better maintainability 1 month ago
build.sh 5db16fd31a fix(gtk): redraw all windows after input 1 month ago
clean.sh 7ab3711c76 refactor(core): Decouple EditorCore and refine Lua API interactions 1 month ago
test.sh 6b964131b4 feat(lua): Expand LuaApi test coverage and fix sol2 binding issues 1 month ago

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