-
Notifications
You must be signed in to change notification settings - Fork 32
Rename CLI command run → build to reflect actual behaviour #519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,8 +20,8 @@ cd my-project | |
| # Validate your workflow | ||
| concore validate workflow.graphml | ||
|
|
||
| # Run your workflow | ||
| concore run workflow.graphml | ||
| # Build your workflow | ||
| concore build workflow.graphml | ||
|
|
||
| # Check running processes | ||
| concore status | ||
|
|
@@ -53,9 +53,9 @@ my-workflow/ | |
| └── README.md # Project documentation | ||
| ``` | ||
|
|
||
| ### `concore run <workflow_file>` | ||
| ### `concore build <workflow_file>` | ||
|
|
||
| Generates and optionally builds a workflow from a GraphML file. | ||
| Compiles a concore workflow GraphML file into executable scripts (POSIX, Windows, or Docker). | ||
|
|
||
| **Options:** | ||
| - `-s, --source <dir>` - Source directory (default: src) | ||
|
|
@@ -66,13 +66,13 @@ Generates and optionally builds a workflow from a GraphML file. | |
|
|
||
| **Example:** | ||
| ```bash | ||
| concore run workflow.graphml --source ./src --output ./build --auto-build | ||
| concore build workflow.graphml --source ./src --output ./build --auto-build | ||
| ``` | ||
|
|
||
| Docker compose example: | ||
|
|
||
| ```bash | ||
| concore run workflow.graphml --source ./src --output ./out --type docker --compose | ||
| concore build workflow.graphml --source ./src --output ./out --type docker --compose | ||
| cd out | ||
|
Comment on lines
53
to
76
|
||
| docker compose up | ||
| ``` | ||
|
|
@@ -150,7 +150,7 @@ concore stop | |
|
|
||
| 5. **Generate and run** | ||
| ```bash | ||
| concore run workflow.graphml --auto-build | ||
| concore build workflow.graphml --auto-build | ||
| cd out | ||
| ./run.bat # or ./run on Linux/Mac | ||
| ``` | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This quick-start section now uses
concore build, which is correct, but readers following older instructions may still tryconcore run. Consider adding a brief migration note here (e.g., 'runwas renamed tobuild') so the top-level README helps users troubleshoot command-not-found errors.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not required, since we are still in development phase