Updated "Get Started in 5 Minutes" docs - #30
Conversation
This reflects changes made in commit 3151287 (Sep 26).
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| # linux or mac | ||
| ./dev_start.sh | ||
| ./dev_demo.sh | ||
| ./start.sh | ||
|
|
||
| # windows | ||
| .\dev_start.ps1 | ||
| .\dev_demo.ps1 | ||
| .\start.ps1 |
There was a problem hiding this comment.
Provide executable Windows startup command
The setup instructions now tell Windows users to run .\start.ps1, but the repository does not contain any PowerShell scripts (git ls-files | grep '.ps1' returns nothing). Following the README will therefore fail on Windows because there is no script to invoke. Either add a PowerShell variant or update the docs to point to an existing script (e.g. via WSL).
Useful? React with 👍 / 👎.
lazamar
left a comment
There was a problem hiding this comment.
Nice. This repo will change a little, and all these different scripts were from past incarnations of this code.
Thanks for the update.
For the future we will just have a utils.sh script in this project like we do in the virtual-agent repo.
This reflects changes made in commit 3151287 (Sep 26).