├── .dockerignore ├── .formatter.exs ├── .gitignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── assets ├── css │ ├── app.css │ └── phoenix.css ├── js │ ├── app.js │ └── phx_feedback_dom.js ├── tailwind.config.js └── vendor │ ├── sortable.js │ └── topbar.js ├── config ├── config.exs ├── dev.exs ├── prod.exs ├── runtime.exs └── test.exs ├── fly.toml ├── lib ├── live_beats.ex ├── live_beats │ ├── accounts.ex │ ├── accounts │ │ ├── events.ex │ │ ├── identity.ex │ │ └── user.ex │ ├── application.ex │ ├── audio.ex │ ├── github.ex │ ├── mailer.ex │ ├── media_library.ex │ ├── media_library │ │ ├── events.ex │ │ ├── genre.ex │ │ ├── profile.ex │ │ └── song.ex │ ├── mp3_stat.ex │ ├── release.ex │ ├── repo.ex │ └── songs_cleaner.ex ├── live_beats_web.ex └── live_beats_web │ ├── channels │ └── presence.ex │ ├── components │ ├── core_components.ex │ ├── layouts.ex │ └── layouts │ │ ├── app.html.heex │ │ ├── live.html.heex │ │ └── root.html.heex │ ├── controllers │ ├── error_html.ex │ ├── file_controller.ex │ ├── oauth_callback_controller.ex │ ├── page_html.ex │ ├── redirect_controller.ex │ └── user_auth.ex │ ├── endpoint.ex │ ├── gettext.ex │ ├── live │ ├── nav.ex │ ├── player_live.ex │ ├── profile_live.ex │ ├── profile_live │ │ ├── song_entry_component.ex │ │ ├── song_row_component.ex │ │ ├── upload_form_component.ex │ │ └── upload_form_component.html.heex │ ├── settings_live.ex │ └── sign_in_live.ex │ ├── router.ex │ └── telemetry.ex ├── mix.exs ├── mix.lock ├── priv ├── gettext │ ├── en │ │ └── LC_MESSAGES │ │ │ └── errors.po │ └── errors.pot ├── repo │ ├── migrations │ │ ├── .formatter.exs │ │ ├── 20210905021010_create_user_auth.exs │ │ ├── 20210908150612_create_genres.exs │ │ ├── 20211027201102_create_songs.exs │ │ ├── 20211116125213_add_avatar_url_to_users.exs │ │ ├── 20211117144505_add_server_ip_to_songs.exs │ │ ├── 20211117174157_add_songs_number_to_users.exs │ │ ├── 20220127172551_add_file_size_to_songs.exs │ │ ├── 20230126132130_add_position_to_songs.exs │ │ └── 20230314150807_add_transcripts_to_songs.exs │ └── seeds.exs └── static │ ├── favicon.ico │ ├── images │ └── phoenix.png │ └── robots.txt ├── rel ├── env.sh.eex └── overlays │ └── bin │ ├── migrate │ ├── migrate.bat │ ├── server │ └── server.bat └── test ├── live_beats ├── accounts_test.exs ├── media_library_test.exs └── mp3_stat_test.exs ├── live_beats_web ├── controllers │ ├── error_html_test.exs │ ├── github_callbacks_test.exs │ ├── redirect_controller_test.exs │ └── user_auth_test.exs └── live │ ├── profile_live_test.exs │ └── settings_live_test.exs ├── support ├── channel_case.ex ├── conn_case.ex ├── data_case.ex ├── fixtures │ ├── accounts_fixtures.ex │ ├── media_library_fixtures.ex │ └── silence1s.mp3 └── presence │ ├── client_mock.ex │ └── presence_mock.ex └── test_helper.exs /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/.dockerignore -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/css/app.css -------------------------------------------------------------------------------- /assets/css/phoenix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/css/phoenix.css -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/phx_feedback_dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/js/phx_feedback_dom.js -------------------------------------------------------------------------------- /assets/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/tailwind.config.js -------------------------------------------------------------------------------- /assets/vendor/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/vendor/sortable.js -------------------------------------------------------------------------------- /assets/vendor/topbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/assets/vendor/topbar.js -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/config/config.exs -------------------------------------------------------------------------------- /config/dev.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/config/dev.exs -------------------------------------------------------------------------------- /config/prod.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/config/prod.exs -------------------------------------------------------------------------------- /config/runtime.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/config/runtime.exs -------------------------------------------------------------------------------- /config/test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/config/test.exs -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/fly.toml -------------------------------------------------------------------------------- /lib/live_beats.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats.ex -------------------------------------------------------------------------------- /lib/live_beats/accounts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/accounts.ex -------------------------------------------------------------------------------- /lib/live_beats/accounts/events.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/accounts/events.ex -------------------------------------------------------------------------------- /lib/live_beats/accounts/identity.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/accounts/identity.ex -------------------------------------------------------------------------------- /lib/live_beats/accounts/user.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/accounts/user.ex -------------------------------------------------------------------------------- /lib/live_beats/application.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/application.ex -------------------------------------------------------------------------------- /lib/live_beats/audio.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/audio.ex -------------------------------------------------------------------------------- /lib/live_beats/github.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/github.ex -------------------------------------------------------------------------------- /lib/live_beats/mailer.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/mailer.ex -------------------------------------------------------------------------------- /lib/live_beats/media_library.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/media_library.ex -------------------------------------------------------------------------------- /lib/live_beats/media_library/events.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/media_library/events.ex -------------------------------------------------------------------------------- /lib/live_beats/media_library/genre.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/media_library/genre.ex -------------------------------------------------------------------------------- /lib/live_beats/media_library/profile.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/media_library/profile.ex -------------------------------------------------------------------------------- /lib/live_beats/media_library/song.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/media_library/song.ex -------------------------------------------------------------------------------- /lib/live_beats/mp3_stat.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/mp3_stat.ex -------------------------------------------------------------------------------- /lib/live_beats/release.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/release.ex -------------------------------------------------------------------------------- /lib/live_beats/repo.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/repo.ex -------------------------------------------------------------------------------- /lib/live_beats/songs_cleaner.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats/songs_cleaner.ex -------------------------------------------------------------------------------- /lib/live_beats_web.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web.ex -------------------------------------------------------------------------------- /lib/live_beats_web/channels/presence.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/channels/presence.ex -------------------------------------------------------------------------------- /lib/live_beats_web/components/core_components.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/components/core_components.ex -------------------------------------------------------------------------------- /lib/live_beats_web/components/layouts.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/components/layouts.ex -------------------------------------------------------------------------------- /lib/live_beats_web/components/layouts/app.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/components/layouts/app.html.heex -------------------------------------------------------------------------------- /lib/live_beats_web/components/layouts/live.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/components/layouts/live.html.heex -------------------------------------------------------------------------------- /lib/live_beats_web/components/layouts/root.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/components/layouts/root.html.heex -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/error_html.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/controllers/error_html.ex -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/file_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/controllers/file_controller.ex -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/oauth_callback_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/controllers/oauth_callback_controller.ex -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/page_html.ex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/redirect_controller.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/controllers/redirect_controller.ex -------------------------------------------------------------------------------- /lib/live_beats_web/controllers/user_auth.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/controllers/user_auth.ex -------------------------------------------------------------------------------- /lib/live_beats_web/endpoint.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/endpoint.ex -------------------------------------------------------------------------------- /lib/live_beats_web/gettext.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/gettext.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/nav.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/nav.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/player_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/player_live.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/profile_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/profile_live.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/profile_live/song_entry_component.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/profile_live/song_entry_component.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/profile_live/song_row_component.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/profile_live/song_row_component.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/profile_live/upload_form_component.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/profile_live/upload_form_component.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/profile_live/upload_form_component.html.heex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/profile_live/upload_form_component.html.heex -------------------------------------------------------------------------------- /lib/live_beats_web/live/settings_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/settings_live.ex -------------------------------------------------------------------------------- /lib/live_beats_web/live/sign_in_live.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/live/sign_in_live.ex -------------------------------------------------------------------------------- /lib/live_beats_web/router.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/router.ex -------------------------------------------------------------------------------- /lib/live_beats_web/telemetry.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/lib/live_beats_web/telemetry.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/mix.lock -------------------------------------------------------------------------------- /priv/gettext/en/LC_MESSAGES/errors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/gettext/en/LC_MESSAGES/errors.po -------------------------------------------------------------------------------- /priv/gettext/errors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/gettext/errors.pot -------------------------------------------------------------------------------- /priv/repo/migrations/.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/.formatter.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210905021010_create_user_auth.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20210905021010_create_user_auth.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20210908150612_create_genres.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20210908150612_create_genres.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20211027201102_create_songs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20211027201102_create_songs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20211116125213_add_avatar_url_to_users.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20211116125213_add_avatar_url_to_users.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20211117144505_add_server_ip_to_songs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20211117144505_add_server_ip_to_songs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20211117174157_add_songs_number_to_users.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20211117174157_add_songs_number_to_users.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20220127172551_add_file_size_to_songs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20220127172551_add_file_size_to_songs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20230126132130_add_position_to_songs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20230126132130_add_position_to_songs.exs -------------------------------------------------------------------------------- /priv/repo/migrations/20230314150807_add_transcripts_to_songs.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/migrations/20230314150807_add_transcripts_to_songs.exs -------------------------------------------------------------------------------- /priv/repo/seeds.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/repo/seeds.exs -------------------------------------------------------------------------------- /priv/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/static/favicon.ico -------------------------------------------------------------------------------- /priv/static/images/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/static/images/phoenix.png -------------------------------------------------------------------------------- /priv/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/priv/static/robots.txt -------------------------------------------------------------------------------- /rel/env.sh.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/rel/env.sh.eex -------------------------------------------------------------------------------- /rel/overlays/bin/migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/rel/overlays/bin/migrate -------------------------------------------------------------------------------- /rel/overlays/bin/migrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/rel/overlays/bin/migrate.bat -------------------------------------------------------------------------------- /rel/overlays/bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/rel/overlays/bin/server -------------------------------------------------------------------------------- /rel/overlays/bin/server.bat: -------------------------------------------------------------------------------- 1 | set PHX_SERVER=true 2 | call "%~dp0\live_beats" start -------------------------------------------------------------------------------- /test/live_beats/accounts_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats/accounts_test.exs -------------------------------------------------------------------------------- /test/live_beats/media_library_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats/media_library_test.exs -------------------------------------------------------------------------------- /test/live_beats/mp3_stat_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats/mp3_stat_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/controllers/error_html_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/controllers/error_html_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/controllers/github_callbacks_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/controllers/github_callbacks_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/controllers/redirect_controller_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/controllers/redirect_controller_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/controllers/user_auth_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/controllers/user_auth_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/live/profile_live_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/live/profile_live_test.exs -------------------------------------------------------------------------------- /test/live_beats_web/live/settings_live_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/live_beats_web/live/settings_live_test.exs -------------------------------------------------------------------------------- /test/support/channel_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/channel_case.ex -------------------------------------------------------------------------------- /test/support/conn_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/conn_case.ex -------------------------------------------------------------------------------- /test/support/data_case.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/data_case.ex -------------------------------------------------------------------------------- /test/support/fixtures/accounts_fixtures.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/fixtures/accounts_fixtures.ex -------------------------------------------------------------------------------- /test/support/fixtures/media_library_fixtures.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/fixtures/media_library_fixtures.ex -------------------------------------------------------------------------------- /test/support/fixtures/silence1s.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/fixtures/silence1s.mp3 -------------------------------------------------------------------------------- /test/support/presence/client_mock.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/presence/client_mock.ex -------------------------------------------------------------------------------- /test/support/presence/presence_mock.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-apps/live_beats/HEAD/test/support/presence/presence_mock.ex -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | Ecto.Adapters.SQL.Sandbox.mode(LiveBeats.Repo, :auto) 3 | --------------------------------------------------------------------------------