Go to file
Nolan Darilek 72501c90b4 Remove aria-hidden on icons in favor of empty alt text.
This matches better with adding alt text to images, which is probably better than either manually opting out of the accessibility tree or creating some less-compatible implementation.
2021-11-17 09:30:33 -06:00
assets Deploy and presence stub 2021-11-16 11:58:28 -05:00
config Deploy and presence stub 2021-11-16 11:58:28 -05:00
lib Remove aria-hidden on icons in favor of empty alt text. 2021-11-17 09:30:33 -06:00
priv Deploy and presence stub 2021-11-16 11:58:28 -05:00
rel Deploy and presence stub 2021-11-16 11:58:28 -05:00
test settings 2021-11-09 06:20:10 -05:00
.dockerignore Deploy and presence stub 2021-11-16 11:58:28 -05:00
.formatter.exs Make it so 🚀 2021-09-02 14:00:57 -04:00
.gitignore Lock files behind temporary token 2021-11-05 23:02:31 -04:00
Dockerfile Deploy and presence stub 2021-11-16 11:58:28 -05:00
fly.toml Deploy and presence stub 2021-11-16 11:58:28 -05:00
mix.exs Deploy and presence stub 2021-11-16 11:58:28 -05:00
mix.lock Deploy and presence stub 2021-11-16 11:58:28 -05:00
README.md Deploy and presence stub 2021-11-16 11:58:28 -05:00

LiveBeats

Play music together with Phoenix LiveView!

Visit todo to try it out, or run locally:

  • Create a Github OAuth app

    • 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