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:4000
andAuthorization callback URL
tohttp://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.server
or inside IEx withiex -S mix phx.server
Now you can visit localhost:4000
from your browser.
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.Repo
andEcto.Query
, since the EdgeDB driver has no adapter for Ecto. At least for now ;) Postgrex
has been replaced byEdgeDB
(wow, thanks, cap). AlthoughPostgrex
itself was retained as an application dependency in order to implement the support ofEctoNetwork.INET
throughPostgrex.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>.edgeql
files. - 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.Enum
andEctoNetwork.INET
instances, 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!
- Original LiveBeats repository: https://github.com/fly-apps/live_beats