git clone https://github.com/DevOpsTerminal/text2iac.git
cd text2iac
cp .env.example .env
# Edit .env with your configuration
make install
make dev
text2iac/
├── api/ # Backend API service
├── email-bridge/ # Email processing service
├── frontend/ # Web interface
├── templates/ # IaC templates
└── docs/ # Documentation
git checkout -b feature/your-feature-name
git add .
git commit -m "feat: add new feature"
make test
make lint
make install
- Install all dependenciesmake dev
- Start development serversmake test
- Run testsmake lint
- Run lintersmake format
- Format codemake clean
- Clean up temporary files