No description
Find a file
2021-11-22 14:20:10 -06:00
assets Update assets/js/app.js 2021-11-22 14:28:57 -05:00
config
lib Set aria-current on active tab to indicate to screen readers which is selected. 2021-11-22 14:20:10 -06:00
priv
rel
test Rename SongLive modules to ProfileLive 2021-11-22 09:57:24 -05:00
.dockerignore
.formatter.exs
.gitignore
Dockerfile
fly.toml
mix.exs
mix.lock
README.md

LiveBeats

Play music together with Phoenix LiveView!

Visit todo to try it out, or run locally:

  • Create a Github OAuth app from this page

    • Set the app homepage to http://localhost:4000 and Authorization callback URL to http://localhost:4000/oauth/callbacks/github
    • After completing the form, click "Generate a new client secret" to obtain your API secret
  • 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 with iex -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