Run your generated application
Once execution completes successfully, the application has been materialized in the configured workspace.
Navigate to the generated application:
cd generated-app/ToDoApp
Start the Angular development server:
npx ng serve
Then open:
You are now running a real application generated from an Averos Application Manifest.
The complete journey is:
Application Manifest
↓
averos plan
↓
Execution Plan
↓
averos run
↓
Generated Application
↓
ng serve
↓
Running Software
graph TD
A[Application Manifest] --> B["averos plan"]
B --> C[Execution Plan]
C --> D["averos run"]
D --> E[Generated Application]
E --> F["ng serve"]
F --> G[Running Software]
What began as a structured description of desired application state has now become a working application.
And this is only the first cycle.
The same application can be changed by revising its manifest, replanned, and evolved again without treating the existing application as something that must simply be regenerated from scratch.
From manifest to running software — and ready for its next revision.