-
Notifications
You must be signed in to change notification settings - Fork 12
Get rid of Boombox from LiveView example #30
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
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.
Copilot reviewed 19 out of 37 changed files in this pull request and generated no comments.
Files not reviewed (18)
- examples/live_view/.formatter.exs: Language not supported
- examples/live_view/.gitignore: Language not supported
- examples/live_view/config/config.exs: Language not supported
- examples/live_view/config/dev.exs: Language not supported
- examples/live_view/config/prod.exs: Language not supported
- examples/live_view/config/runtime.exs: Language not supported
- examples/live_view/config/test.exs: Language not supported
- examples/live_view/lib/example_project_web/router.ex: Language not supported
- examples/live_view/lib/webrtc_live_view.ex: Language not supported
- examples/live_view/lib/webrtc_live_view/application.ex: Language not supported
- examples/live_view/lib/webrtc_live_view/pipeline.ex: Language not supported
- examples/live_view/lib/webrtc_live_view_web.ex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/components/layouts.ex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/components/layouts/app.html.heex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/components/layouts/root.html.heex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/controllers/error_html.ex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/controllers/error_json.ex: Language not supported
- examples/live_view/lib/webrtc_live_view_web/controllers/page_controller.ex: Language not supported
examples/live_view/assets/js/app.js
Outdated
| let Hooks = {}; | ||
| const iceServers = [{ urls: "stun:stun.l.google.com:19302" }]; | ||
|
|
||
| let Hooks = {}; |
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 think the changes from the contour demo are not applied here, so please rename it to lowercase hooks
examples/live_view/README.md
Outdated
|
|
||
| * Run `mix setup` to install and setup dependencies | ||
| * Start Phoenix with `mix phx.server` or inside IEx with `iex -S mix phx.server` | ||
| * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` |
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.
we are starting Phoenix server, not only Phoenix endpoint with that command
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.
since it's just handle_init here, perhaps it would be better to use RCPipeline?
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.
Yes, it could be used, but for me it looks better to define Pipeline module in demos than to use RCPipeline, because it is more conventional way of using Membrane
No description provided.