flux-platform 0.4.0

A local-first, AI-native developer automation platform: build, test, package, and deploy from a single .flux file, and make your repository legible to AI agents.
1
2
3
4
5
6
7
8
9
10
11
12
project "python-app"
language python

pipeline {
    step dependencies {
        command "pip install -r requirements.txt"
    }
    step test {
        needs dependencies
        command "python -m unittest discover -p \"test_*.py\""
    }
}