mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-26 01:40:59 +00:00
No description
94814ce86f
On [`phoenix_html` version 4.0.0][0], deprecated functionality was removed and all `HTML` helpers were moved to `phoenix_html_helpers`. To keep everything the same, we add the `phoenix_html_helpers` package, and update the `html_helpers/0` method. [0]: https://hexdocs.pm/phoenix_html/changelog.html#v4-0-0-2023-12-19 |
||
---|---|---|
assets | ||
config | ||
lib | ||
priv | ||
rel | ||
test | ||
.dockerignore | ||
.formatter.exs | ||
.gitignore | ||
.tool-versions | ||
Dockerfile | ||
fly.toml | ||
LICENSE.md | ||
mix.exs | ||
mix.lock | ||
README.md |
LiveBeats
Play music together with Phoenix LiveView!
Visit livebeats.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.
Ready to run in production? Please check our deployment guides.
Learn more
- Official website: https://www.phoenixframework.org/
- Guides: https://hexdocs.pm/phoenix/overview.html
- Docs: https://hexdocs.pm/phoenix
- Forum: https://elixirforum.com/c/phoenix-forum
- Source: https://github.com/phoenixframework/phoenix