├── .browserslistrc ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ └── .keep │ ├── javascripts │ │ ├── manifest.json.erb │ │ ├── serviceworker-companion.js │ │ └── serviceworker.js.erb │ └── stylesheets │ │ ├── api │ │ └── v1 │ │ │ ├── albums.scss │ │ │ ├── categories.scss │ │ │ ├── dashboard.scss │ │ │ ├── favorites.scss │ │ │ ├── recently_heards.scss │ │ │ └── search.scss │ │ ├── application.scss │ │ ├── devise.scss │ │ └── home.scss ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ └── v1 │ │ │ ├── albums_controller.rb │ │ │ ├── artists_controller.rb │ │ │ ├── categories_controller.rb │ │ │ ├── dashboard_controller.rb │ │ │ ├── favorites_controller.rb │ │ │ ├── recently_heards_controller.rb │ │ │ └── search_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── home_controller.rb │ └── registrations_controller.rb ├── helpers │ ├── api │ │ └── v1 │ │ │ ├── albums_helper.rb │ │ │ ├── categories_helper.rb │ │ │ ├── dashboard_helper.rb │ │ │ ├── favorites_helper.rb │ │ │ ├── recently_heards_helper.rb │ │ │ └── search_helper.rb │ ├── application_helper.rb │ └── home_helper.rb ├── javascript │ ├── app.js │ ├── app.scss │ ├── assets │ │ └── images │ │ │ └── logo.png │ ├── channels │ │ ├── consumer.js │ │ └── index.js │ ├── components │ │ ├── albums │ │ │ └── index.js │ │ ├── artists │ │ │ └── index.js │ │ ├── common │ │ │ ├── album │ │ │ │ └── index.js │ │ │ ├── artist │ │ │ │ └── index.js │ │ │ ├── categories │ │ │ │ └── index.js │ │ │ ├── favorite │ │ │ │ └── index.js │ │ │ ├── menu │ │ │ │ └── index.js │ │ │ ├── navbar_footer │ │ │ │ └── index.js │ │ │ ├── results_tabs │ │ │ │ └── index.js │ │ │ └── section_wrapper │ │ │ │ └── index.js │ │ ├── discovery │ │ │ └── index.js │ │ ├── favorites │ │ │ └── index.js │ │ ├── musics │ │ │ ├── index.js │ │ │ └── music │ │ │ │ └── index.js │ │ └── search │ │ │ ├── index.js │ │ │ └── search_bar │ │ │ └── index.js │ ├── packs │ │ ├── application.js │ │ └── spotcode.jsx │ ├── routes.js │ ├── screens │ │ ├── album │ │ │ └── index.js │ │ ├── artist │ │ │ └── index.js │ │ ├── discovery │ │ │ └── index.js │ │ ├── favorites │ │ │ └── index.js │ │ ├── home │ │ │ └── index.js │ │ └── search │ │ │ └── index.js │ └── services │ │ ├── albums.js │ │ ├── api.js │ │ ├── artists.js │ │ ├── categories.js │ │ ├── favorites.js │ │ ├── recently_heards.js │ │ └── search.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── album.rb │ ├── application_record.rb │ ├── artist.rb │ ├── category.rb │ ├── concerns │ │ └── .keep │ ├── favorite.rb │ ├── recently_heard.rb │ ├── song.rb │ └── user.rb └── views │ ├── api │ └── v1 │ │ ├── albums │ │ └── show.json.jbuilder │ │ ├── artists │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── categories │ │ ├── index.json.jbuilder │ │ └── show.json.jbuilder │ │ ├── dashboard │ │ └── index.json.jbuilder │ │ ├── favorites │ │ └── index.json.jbuilder │ │ └── search │ │ └── index.json.jbuilder │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── email_changed.html.erb │ │ ├── password_change.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ ├── _error_messages.html.erb │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── home │ └── index.html.erb │ └── layouts │ ├── application.html.erb │ ├── mailer.html.erb │ └── mailer.text.erb ├── babel.config.js ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring ├── webpack ├── webpack-dev-server └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── serviceworker.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb ├── storage.yml ├── webpack │ ├── development.js │ ├── environment.js │ ├── production.js │ └── test.js └── webpacker.yml ├── db ├── migrate │ ├── 20200414231725_devise_create_users.rb │ ├── 20200414231816_create_active_storage_tables.active_storage.rb │ ├── 20200414231825_create_artists.rb │ ├── 20200414231826_create_categories.rb │ ├── 20200414231828_create_albums.rb │ ├── 20200414231829_create_songs.rb │ ├── 20200414231830_create_recently_heards.rb │ ├── 20200414231833_create_favorites.rb │ └── 20200414232012_add_name_to_users.rb ├── schema.rb └── seeds.rb ├── lib ├── assets │ └── .keep └── tasks │ └── .keep ├── log └── .keep ├── package.json ├── postcss.config.js ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico ├── readme_photos │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 16.png │ ├── 17.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png └── robots.txt ├── routes.js ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ ├── .keep │ ├── api │ │ └── v1 │ │ │ ├── albums_controller_test.rb │ │ │ ├── categories_controller_test.rb │ │ │ ├── dashboard_controller_test.rb │ │ │ ├── favorites_controller_test.rb │ │ │ ├── recently_heards_controller_test.rb │ │ │ └── search_controller_test.rb │ └── home_controller_test.rb ├── fixtures │ ├── .keep │ ├── albums.yml │ ├── artists.yml │ ├── categories.yml │ ├── favorites.yml │ ├── files │ │ └── .keep │ ├── recently_heards.yml │ ├── songs.yml │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── album_test.rb │ ├── artist_test.rb │ ├── category_test.rb │ ├── favorite_test.rb │ ├── recently_heard_test.rb │ ├── song_test.rb │ └── user_test.rb ├── system │ └── .keep └── test_helper.rb ├── tmp └── .keep ├── vendor └── .keep └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | defaults 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.5.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/manifest.json.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/javascripts/manifest.json.erb -------------------------------------------------------------------------------- /app/assets/javascripts/serviceworker-companion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/javascripts/serviceworker-companion.js -------------------------------------------------------------------------------- /app/assets/javascripts/serviceworker.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/javascripts/serviceworker.js.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/albums.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/albums.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/categories.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/categories.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/dashboard.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/favorites.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/favorites.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/recently_heards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/recently_heards.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api/v1/search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/api/v1/search.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/application.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/devise.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/devise.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/assets/stylesheets/home.scss -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/albums_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/albums_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/artists_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/artists_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/favorites_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/favorites_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/recently_heards_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/recently_heards_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/api/v1/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /app/helpers/api/v1/albums_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::AlbumsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/categories_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::CategoriesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/dashboard_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::DashboardHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/favorites_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::FavoritesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/recently_heards_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::RecentlyHeardsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api/v1/search_helper.rb: -------------------------------------------------------------------------------- 1 | module Api::V1::SearchHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/javascript/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/app.js -------------------------------------------------------------------------------- /app/javascript/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/app.scss -------------------------------------------------------------------------------- /app/javascript/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/assets/images/logo.png -------------------------------------------------------------------------------- /app/javascript/channels/consumer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/channels/consumer.js -------------------------------------------------------------------------------- /app/javascript/channels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/channels/index.js -------------------------------------------------------------------------------- /app/javascript/components/albums/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/albums/index.js -------------------------------------------------------------------------------- /app/javascript/components/artists/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/artists/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/album/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/album/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/artist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/artist/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/categories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/categories/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/favorite/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/favorite/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/menu/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/navbar_footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/navbar_footer/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/results_tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/results_tabs/index.js -------------------------------------------------------------------------------- /app/javascript/components/common/section_wrapper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/common/section_wrapper/index.js -------------------------------------------------------------------------------- /app/javascript/components/discovery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/discovery/index.js -------------------------------------------------------------------------------- /app/javascript/components/favorites/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/favorites/index.js -------------------------------------------------------------------------------- /app/javascript/components/musics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/musics/index.js -------------------------------------------------------------------------------- /app/javascript/components/musics/music/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/musics/music/index.js -------------------------------------------------------------------------------- /app/javascript/components/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/search/index.js -------------------------------------------------------------------------------- /app/javascript/components/search/search_bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/components/search/search_bar/index.js -------------------------------------------------------------------------------- /app/javascript/packs/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/packs/application.js -------------------------------------------------------------------------------- /app/javascript/packs/spotcode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/packs/spotcode.jsx -------------------------------------------------------------------------------- /app/javascript/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/routes.js -------------------------------------------------------------------------------- /app/javascript/screens/album/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/album/index.js -------------------------------------------------------------------------------- /app/javascript/screens/artist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/artist/index.js -------------------------------------------------------------------------------- /app/javascript/screens/discovery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/discovery/index.js -------------------------------------------------------------------------------- /app/javascript/screens/favorites/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/favorites/index.js -------------------------------------------------------------------------------- /app/javascript/screens/home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/home/index.js -------------------------------------------------------------------------------- /app/javascript/screens/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/screens/search/index.js -------------------------------------------------------------------------------- /app/javascript/services/albums.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/albums.js -------------------------------------------------------------------------------- /app/javascript/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/api.js -------------------------------------------------------------------------------- /app/javascript/services/artists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/artists.js -------------------------------------------------------------------------------- /app/javascript/services/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/categories.js -------------------------------------------------------------------------------- /app/javascript/services/favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/favorites.js -------------------------------------------------------------------------------- /app/javascript/services/recently_heards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/recently_heards.js -------------------------------------------------------------------------------- /app/javascript/services/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/javascript/services/search.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/album.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/artist.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/favorite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/favorite.rb -------------------------------------------------------------------------------- /app/models/recently_heard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/recently_heard.rb -------------------------------------------------------------------------------- /app/models/song.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/song.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/api/v1/albums/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/albums/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/artists/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/artists/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/artists/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/artists/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/categories/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/categories/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/categories/show.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/categories/show.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/dashboard/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/dashboard/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/favorites/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/favorites/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/api/v1/search/index.json.jbuilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/api/v1/search/index.json.jbuilder -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/babel.config.js -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/serviceworker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/serviceworker.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/storage.yml -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/webpack/environment.js -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /db/migrate/20200414231725_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231725_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20200414231816_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231816_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20200414231825_create_artists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231825_create_artists.rb -------------------------------------------------------------------------------- /db/migrate/20200414231826_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231826_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20200414231828_create_albums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231828_create_albums.rb -------------------------------------------------------------------------------- /db/migrate/20200414231829_create_songs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231829_create_songs.rb -------------------------------------------------------------------------------- /db/migrate/20200414231830_create_recently_heards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231830_create_recently_heards.rb -------------------------------------------------------------------------------- /db/migrate/20200414231833_create_favorites.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414231833_create_favorites.rb -------------------------------------------------------------------------------- /db/migrate/20200414232012_add_name_to_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/migrate/20200414232012_add_name_to_users.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/readme_photos/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/1.png -------------------------------------------------------------------------------- /public/readme_photos/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/10.png -------------------------------------------------------------------------------- /public/readme_photos/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/11.png -------------------------------------------------------------------------------- /public/readme_photos/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/12.png -------------------------------------------------------------------------------- /public/readme_photos/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/13.png -------------------------------------------------------------------------------- /public/readme_photos/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/14.png -------------------------------------------------------------------------------- /public/readme_photos/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/15.png -------------------------------------------------------------------------------- /public/readme_photos/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/16.png -------------------------------------------------------------------------------- /public/readme_photos/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/17.png -------------------------------------------------------------------------------- /public/readme_photos/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/2.png -------------------------------------------------------------------------------- /public/readme_photos/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/3.png -------------------------------------------------------------------------------- /public/readme_photos/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/4.png -------------------------------------------------------------------------------- /public/readme_photos/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/5.png -------------------------------------------------------------------------------- /public/readme_photos/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/6.png -------------------------------------------------------------------------------- /public/readme_photos/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/7.png -------------------------------------------------------------------------------- /public/readme_photos/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/8.png -------------------------------------------------------------------------------- /public/readme_photos/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/readme_photos/9.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/public/robots.txt -------------------------------------------------------------------------------- /routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/routes.js -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/api/v1/albums_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/albums_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/categories_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/categories_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/dashboard_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/dashboard_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/favorites_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/favorites_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/recently_heards_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/recently_heards_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/api/v1/search_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/api/v1/search_controller_test.rb -------------------------------------------------------------------------------- /test/controllers/home_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/controllers/home_controller_test.rb -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/albums.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/albums.yml -------------------------------------------------------------------------------- /test/fixtures/artists.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/artists.yml -------------------------------------------------------------------------------- /test/fixtures/categories.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/categories.yml -------------------------------------------------------------------------------- /test/fixtures/favorites.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/favorites.yml -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/recently_heards.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/recently_heards.yml -------------------------------------------------------------------------------- /test/fixtures/songs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/songs.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/album_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/album_test.rb -------------------------------------------------------------------------------- /test/models/artist_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/artist_test.rb -------------------------------------------------------------------------------- /test/models/category_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/category_test.rb -------------------------------------------------------------------------------- /test/models/favorite_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/favorite_test.rb -------------------------------------------------------------------------------- /test/models/recently_heard_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/recently_heard_test.rb -------------------------------------------------------------------------------- /test/models/song_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/song_test.rb -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lucasdfg07/Spotify_clone/HEAD/yarn.lock --------------------------------------------------------------------------------