Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ab394db
build(terraform): add AWS Batch infrastructure for training jobs
cristofima Nov 28, 2025
0f68127
feat(frontend): initialize Next.js app for implementing CSV upload an…
cristofima Nov 28, 2025
cface38
feat(backend): implement AutoML training pipeline
cristofima Nov 28, 2025
88f5f77
docs: add MIT License file
cristofima Nov 28, 2025
eacf1bd
build(terraform): add Dockerfile for Lambda deployment package
cristofima Nov 28, 2025
85252c4
ci: add GitHub Actions workflows for infrastructure management
cristofima Nov 28, 2025
c0484af
build(tools): add setup script for S3 backend and DynamoDB
cristofima Nov 28, 2025
85700d6
docs: add git commit message guidelines and VSCode settings
cristofima Nov 28, 2025
71e558c
docs: add CODEOWNERS file for review requirements
cristofima Nov 28, 2025
2ccb50a
docs: add quick start guide for AWS AutoML Lite
cristofima Nov 28, 2025
0142c84
docs: add architecture decisions for containers vs Lambda
cristofima Nov 28, 2025
cf2880b
docs: update README with Terraform prerequisites and links
cristofima Nov 28, 2025
8235dfb
chore: update .gitignore to exclude .vscode directory
cristofima Nov 28, 2025
3b61f72
docs: update commit message guidelines to remove issue references
cristofima Nov 28, 2025
b2fcfa9
ci: fix GitHub Actions workflows to ignore specific file types
cristofima Nov 28, 2025
8d49b1e
ci: add Terraform setup step to deployment workflows
cristofima Nov 28, 2025
c9a9437
build(terraform): implement best practices and fix workflows
cristofima Nov 28, 2025
141f859
fix(workflows): complete workflow fixes with verified terraform wrapp…
cristofima Nov 28, 2025
be93bb6
ci: improve infrastructure existence checks in workflows
cristofima Nov 28, 2025
c747411
fix(ci): enhance infrastructure output validation in workflows
cristofima Nov 28, 2025
48f8d9f
build(terraform): add dev.tfvars for environment configuration
cristofima Nov 28, 2025
86c0fbd
ci: enhance Lambda and Terraform workflows
cristofima Nov 28, 2025
07a384f
fix(backend): add missing __init__.py files for Python package imports
cristofima Nov 28, 2025
2c3cff7
ci: capture terraform output exit code correctly in deploy-lambda-api
cristofima Nov 28, 2025
86fb3af
ci: update Terraform version to 1.9.8 for state compatibility
cristofima Nov 28, 2025
b062d46
ci: add workflow file paths to triggers for self-activation
cristofima Nov 28, 2025
8d0c474
feat(backend/api): add datasets router and metadata handling
cristofima Nov 29, 2025
f4385d4
build(terraform): update batch job resource configurations
cristofima Nov 30, 2025
0b8a62b
refactor(backend/training): enhance problem type detection logic
cristofima Nov 30, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Code Owners - Require review from specific users

# Infrastructure changes require review
/infrastructure/terraform/ @cristofima

# Production deployments require owner approval
/.github/workflows/terraform-deploy-prod.yml @cristofima

# CI/CD changes require review
/.github/workflows/ @cristofima
Loading