├── .DS_Store ├── .env.development ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── profile_controller.rb │ └── spotify_controller.rb ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ ├── artist.rb │ ├── concerns │ │ └── .keep │ ├── like_artist.rb │ ├── like_track.rb │ ├── profile.rb │ └── track.rb ├── serializers │ ├── artist_serializer.rb │ ├── profile_serializer.rb │ └── track_serializer.rb └── views │ └── layouts │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring └── update ├── client ├── .gitignore ├── README.md ├── build │ ├── asset-manifest.json │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ ├── music_note.png │ ├── precache-manifest.e42edb072d4f493d021717f3710074f3.js │ ├── service-worker.js │ └── static │ │ ├── css │ │ ├── main.5835e097.chunk.css │ │ └── main.5835e097.chunk.css.map │ │ ├── js │ │ ├── 1.c90740ad.chunk.js │ │ ├── 1.c90740ad.chunk.js.map │ │ ├── main.47307ed3.chunk.js │ │ ├── main.47307ed3.chunk.js.map │ │ ├── runtime~main.229c360f.js │ │ └── runtime~main.229c360f.js.map │ │ └── media │ │ └── AE7i.dc523540.gif ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── music_note.png ├── src │ ├── App.test.js │ ├── actions │ │ ├── ProfileActions.js │ │ └── SearchActions.js │ ├── container │ │ ├── App.js │ │ ├── Criteria.js │ │ ├── Profile.js │ │ ├── ProfilePage.js │ │ └── SearchContainer.js │ ├── css │ │ ├── AE7i.gif │ │ ├── App.css │ │ ├── Rec.css │ │ ├── Search.css │ │ ├── index.css │ │ ├── profile.css │ │ └── welcome.css │ ├── index.js │ ├── presentation │ │ ├── Dropdown.js │ │ ├── Like.js │ │ ├── Navbar.js │ │ ├── Playback.js │ │ ├── ProfileContainer.js │ │ ├── ProfileForm.js │ │ ├── ProfileList.js │ │ ├── Recommendation.js │ │ └── WelcomePanel.js │ ├── reducers │ │ ├── profileReducers.js │ │ └── reducers.js │ └── serviceWorker.js └── yarn.lock ├── 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 │ ├── backtrace_silencers.rb │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20181130133923_create_profiles.rb │ ├── 20181130140753_create_tracks.rb │ ├── 20181130140801_create_artists.rb │ ├── 20181205014126_create_like_tracks.rb │ └── 20190108150542_create_like_artists.rb ├── schema.rb └── seeds.rb ├── lib └── tasks │ ├── .keep │ └── start.rake ├── log └── .keep ├── notes.md ├── package.json ├── public └── robots.txt ├── storage └── .keep ├── test ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ └── files │ │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep └── test_helper.rb ├── tmp └── .keep └── vendor └── .keep /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- 1 | HOST = herokuapp.com 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.3.3 -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rails s 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- 1 | web: cd client && npm start 2 | api: bundle exec rails s -p 3001 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/Rakefile -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/controllers/profile_controller.rb -------------------------------------------------------------------------------- /app/controllers/spotify_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/controllers/spotify_controller.rb -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/artist.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/like_artist.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/like_artist.rb -------------------------------------------------------------------------------- /app/models/like_track.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/like_track.rb -------------------------------------------------------------------------------- /app/models/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/profile.rb -------------------------------------------------------------------------------- /app/models/track.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/models/track.rb -------------------------------------------------------------------------------- /app/serializers/artist_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/serializers/artist_serializer.rb -------------------------------------------------------------------------------- /app/serializers/profile_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/serializers/profile_serializer.rb -------------------------------------------------------------------------------- /app/serializers/track_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/serializers/track_serializer.rb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/bin/update -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/README.md -------------------------------------------------------------------------------- /client/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/asset-manifest.json -------------------------------------------------------------------------------- /client/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/favicon.ico -------------------------------------------------------------------------------- /client/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/index.html -------------------------------------------------------------------------------- /client/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/manifest.json -------------------------------------------------------------------------------- /client/build/music_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/music_note.png -------------------------------------------------------------------------------- /client/build/precache-manifest.e42edb072d4f493d021717f3710074f3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/precache-manifest.e42edb072d4f493d021717f3710074f3.js -------------------------------------------------------------------------------- /client/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/service-worker.js -------------------------------------------------------------------------------- /client/build/static/css/main.5835e097.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/css/main.5835e097.chunk.css -------------------------------------------------------------------------------- /client/build/static/css/main.5835e097.chunk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/css/main.5835e097.chunk.css.map -------------------------------------------------------------------------------- /client/build/static/js/1.c90740ad.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/1.c90740ad.chunk.js -------------------------------------------------------------------------------- /client/build/static/js/1.c90740ad.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/1.c90740ad.chunk.js.map -------------------------------------------------------------------------------- /client/build/static/js/main.47307ed3.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/main.47307ed3.chunk.js -------------------------------------------------------------------------------- /client/build/static/js/main.47307ed3.chunk.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/main.47307ed3.chunk.js.map -------------------------------------------------------------------------------- /client/build/static/js/runtime~main.229c360f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/runtime~main.229c360f.js -------------------------------------------------------------------------------- /client/build/static/js/runtime~main.229c360f.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/js/runtime~main.229c360f.js.map -------------------------------------------------------------------------------- /client/build/static/media/AE7i.dc523540.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/build/static/media/AE7i.dc523540.gif -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/public/favicon.ico -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/public/music_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/public/music_note.png -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/actions/ProfileActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/actions/ProfileActions.js -------------------------------------------------------------------------------- /client/src/actions/SearchActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/actions/SearchActions.js -------------------------------------------------------------------------------- /client/src/container/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/container/App.js -------------------------------------------------------------------------------- /client/src/container/Criteria.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/container/Criteria.js -------------------------------------------------------------------------------- /client/src/container/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/container/Profile.js -------------------------------------------------------------------------------- /client/src/container/ProfilePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/container/ProfilePage.js -------------------------------------------------------------------------------- /client/src/container/SearchContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/container/SearchContainer.js -------------------------------------------------------------------------------- /client/src/css/AE7i.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/AE7i.gif -------------------------------------------------------------------------------- /client/src/css/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/App.css -------------------------------------------------------------------------------- /client/src/css/Rec.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/Rec.css -------------------------------------------------------------------------------- /client/src/css/Search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/Search.css -------------------------------------------------------------------------------- /client/src/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/index.css -------------------------------------------------------------------------------- /client/src/css/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/profile.css -------------------------------------------------------------------------------- /client/src/css/welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/css/welcome.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/presentation/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/Dropdown.js -------------------------------------------------------------------------------- /client/src/presentation/Like.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/Like.js -------------------------------------------------------------------------------- /client/src/presentation/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/Navbar.js -------------------------------------------------------------------------------- /client/src/presentation/Playback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/Playback.js -------------------------------------------------------------------------------- /client/src/presentation/ProfileContainer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/ProfileContainer.js -------------------------------------------------------------------------------- /client/src/presentation/ProfileForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/ProfileForm.js -------------------------------------------------------------------------------- /client/src/presentation/ProfileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/ProfileList.js -------------------------------------------------------------------------------- /client/src/presentation/Recommendation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/Recommendation.js -------------------------------------------------------------------------------- /client/src/presentation/WelcomePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/presentation/WelcomePanel.js -------------------------------------------------------------------------------- /client/src/reducers/profileReducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/reducers/profileReducers.js -------------------------------------------------------------------------------- /client/src/reducers/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/reducers/reducers.js -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20181130133923_create_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/migrate/20181130133923_create_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20181130140753_create_tracks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/migrate/20181130140753_create_tracks.rb -------------------------------------------------------------------------------- /db/migrate/20181130140801_create_artists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/migrate/20181130140801_create_artists.rb -------------------------------------------------------------------------------- /db/migrate/20181205014126_create_like_tracks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/migrate/20181205014126_create_like_tracks.rb -------------------------------------------------------------------------------- /db/migrate/20190108150542_create_like_artists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/migrate/20190108150542_create_like_artists.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/start.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/lib/tasks/start.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/notes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/package.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/public/robots.txt -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdheisser/MusicBot-React-Redux/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------