-
Notifications
You must be signed in to change notification settings - Fork 6
docs: update macos environment setup and more #2205
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
Conversation
91fda84 to
f0beb38
Compare
f35c992 to
301eb30
Compare
| yarn --cwd web-ui start | ||
| ``` | ||
|
|
||
| When developing the UI, you can access the Vite server at [http://localhost:5173](http://localhost:5173). |
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.
You could add something about running the UI unit tests.
- cd to the
web-uidirectory. - Enter
yarn test.
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.
Great idea. I've added that just below and noted both methods for running (with and without --cwd flag.
| # Install Podman | ||
|
|
||
| This project uses [Podman](https://podman.io/) for containerization. | ||
| This project uses [Podman](https://podman.io/) for containerization. Podman is a daemonless container engine for developing, managing, and running Open Container Initiative containers. It is an alternative to Docker and is available without fee for macOS via Homebrew. |
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.
I had to install a specific version of podman (4.9.3) that I could not get with Homebrew.
I downloaded the file podman-installer-macos-arm64.pkg from https://github.com/containers/podman/releases/tag/v4.9.3.
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.
Good to know for reference. If you're able to isolate the issue you were having with Podman 5.x perhaps that's worth a support ticket to the Podman repo (unrelated example issue I opened yesterday).
Updated setup instructions for macOS++