diff --git a/docs/getting-started/Start-a-New-CrewAI-Project-Template-Method.md b/docs/getting-started/Start-a-New-CrewAI-Project-Template-Method.md index bc3b03a7e..70877cb18 100644 --- a/docs/getting-started/Start-a-New-CrewAI-Project-Template-Method.md +++ b/docs/getting-started/Start-a-New-CrewAI-Project-Template-Method.md @@ -244,6 +244,10 @@ def run(): To run your project, use the following command: +```shell +$ crewai run +``` +or ```shell $ poetry run my_project ``` diff --git a/src/crewai/cli/templates/README.md b/src/crewai/cli/templates/README.md index 60dc617e9..0914be209 100644 --- a/src/crewai/cli/templates/README.md +++ b/src/crewai/cli/templates/README.md @@ -34,6 +34,10 @@ poetry install To kickstart your crew of AI agents and begin task execution, run this from the root folder of your project: +```bash +$ crewai run +``` +or ```bash poetry run {{folder_name}} ```