Files
metabuilder/docs/lua/README.md
johndoe6345789 b3e17e7dd4 feat: Add troubleshooting guide and enhance act scripts
- Created a new troubleshooting guide in README.md for common issues and testing problems.
- Updated package.json to include new act commands for linting, type checking, building, and diagnosing workflows.
- Added a pre-commit hook script to validate workflows before commits.
- Enhanced run-act.sh script with logging, Docker checks, and improved output formatting.
- Improved test-workflows.sh with an interactive menu and performance tracking.
- Introduced setup-act.sh for quick setup and testing of act integration.
2025-12-25 13:16:45 +00:00

32 lines
713 B
Markdown

# Lua Scripting
Documentation for Lua scripting in MetaBuilder.
## Overview
Lua enables business logic implementation without code redeployment. Scripts run in an isolated sandbox without access to system resources.
## Scripting Guide
- Lua language fundamentals
- MetaBuilder Lua APIs
- Sandbox restrictions and security
## Common Patterns
- Validation scripts
- Data transformation
- Business rule implementation
## Best Practices
- Error handling
- Performance optimization
- Testing Lua scripts
## Related Resources
- [Architecture: Data-Driven Architecture](../architecture/data-driven-architecture.md)
- [Guides: Development](../guides/)
- [Testing: Guidelines](../testing/TESTING_GUIDELINES.md)