| .github/workflows | ||
| assets | ||
| config | ||
| lib | ||
| priv | ||
| rel | ||
| test | ||
| .credo.exs | ||
| .dockerignore | ||
| .formatter.exs | ||
| .gitignore | ||
| Dockerfile | ||
| edgedb.toml | ||
| fly.toml | ||
| LICENSE.md | ||
| mix.exs | ||
| mix.lock | ||
| README.md | ||
LiveBeats with EdgeDB
Play music together with Phoenix LiveView!
Visit edgebeats.fly.dev to try it out, or run locally:
-
Create a Github OAuth app from this page
- Set the app homepage to
http://localhost:4000andAuthorization callback URLtohttp://localhost:4000/oauth/callbacks/github - After completing the form, click "Generate a new client secret" to obtain your API secret
- Set the app homepage to
-
Export your GitHub Client ID and secret:
export LIVE_BEATS_GITHUB_CLIENT_ID="..." export LIVE_BEATS_GITHUB_CLIENT_SECRET="..." -
Install dependencies with
mix deps.get -
Create and migrate your database with
mix ecto.setup -
Start Phoenix endpoint with
mix phx.serveror inside IEx withiex -S mix phx.server
Now you can visit localhost:4000 from your browser.
Changes compared to the original LiveBeats implementation
The main change is replacing PostgreSQL with EdgeDB. What does this mean?
- Ecto is preserved, although changes have been made to get rid of the use of
Ecto.RepoandEcto.Query, since the EdgeDB driver has no adapter for Ecto. At least for now ;) Postgrexhas been replaced byEdgeDB(wow, thanks, cap). AlthoughPostgrexitself was retained as an application dependency in order to implement the support ofEctoNetwork.INETthroughPostgrex.INET.- Most of the other usual Ecto stuff (
Ecto.Schema,Ecto.Changeset,Ecto.Multi) is mostly as it is, but some changes have been made to be able to run this application without an adapter. - Queries are written using pure EdgeQL instead of Ecto DSL for Elixir and stored in
priv/edgedb/edgeql/<domain>/<query_name>.edgeqlfiles. - There is no longer
LiveBeats.ReplicaRepo. It was removed to simplify refactoring, although it can be restored later. - The database schema has been migrated to EdgeQL SDL mostly unchanged, except for the new syntax. This includes database migrations, which are now managed through EdgeDB CLI instead of Ecto.
- To support encoding/decoding of
Ecto.EnumandEctoNetwork.INETinstances, custom codecs were implemented for EdgeDB.
Note: Although the tests pass, no additional tests were added, and the original cases did not cover the entire project. In addition, the EdgeDB driver itself is quite young and has not been tested in real applications. ecause of all this, various bugs can (and probably do) exist in the application. If you face them, open the issue in the repository or, if you like, create a PR with a fix. Any type of contribution is welcome!
Learn more
- Original LiveBeats repository: https://github.com/fly-apps/live_beats