├── .babelrc ├── .gitignore ├── .postcssrc.yml ├── Gemfile ├── Gemfile.lock ├── Procfile ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ └── pages_controller.rb ├── helpers │ └── application_helper.rb └── views │ ├── layouts │ └── application.html.erb │ └── pages │ ├── about.html.erb │ └── home.html.erb ├── bin ├── bundle ├── rails ├── rake ├── server ├── setup ├── spring ├── update ├── webpack ├── webpack-dev-server ├── webpack-watcher └── yarn ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── application_controller_renderer.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── puma.rb ├── routes.rb ├── secrets.yml ├── spring.rb ├── webpack │ ├── configuration.js │ ├── development.js │ ├── development.server.js │ ├── development.server.yml │ ├── loaders │ │ ├── assets.js │ │ ├── babel.js │ │ ├── coffee.js │ │ ├── erb.js │ │ ├── react.js │ │ └── sass.js │ ├── paths.yml │ ├── production.js │ ├── shared.js │ └── test.js └── webpacker.yml ├── frontend ├── config │ ├── jest │ │ ├── cssTransform.js │ │ └── fileTransform.js │ └── polyfills.js ├── entries │ └── app.jsx ├── scripts │ └── test.js ├── spec │ ├── app.spec.jsx │ ├── e2e.spec.js │ └── helpers │ │ └── visit.js └── src │ ├── components │ ├── about.jsx │ ├── appbar.jsx │ └── home.jsx │ ├── layouts │ └── application.jsx │ └── styles │ ├── appbar.sass │ ├── application.sass │ └── fonts.sass ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── entries │ └── manifest.json ├── favicon.ico └── robots.txt ├── vendor └── yarn.lock └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "react"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/.postcssrc.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec puma -p $PORT 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/pages/about.html.erb: -------------------------------------------------------------------------------- 1 | <%= react_component 'About' %> 2 | -------------------------------------------------------------------------------- /app/views/pages/home.html.erb: -------------------------------------------------------------------------------- 1 | <%= react_component 'Home' %> 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/server -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/update -------------------------------------------------------------------------------- /bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/webpack -------------------------------------------------------------------------------- /bin/webpack-dev-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/webpack-dev-server -------------------------------------------------------------------------------- /bin/webpack-watcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/webpack-watcher -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/webpack/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/configuration.js -------------------------------------------------------------------------------- /config/webpack/development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/development.js -------------------------------------------------------------------------------- /config/webpack/development.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/development.server.js -------------------------------------------------------------------------------- /config/webpack/development.server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/development.server.yml -------------------------------------------------------------------------------- /config/webpack/loaders/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/assets.js -------------------------------------------------------------------------------- /config/webpack/loaders/babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/babel.js -------------------------------------------------------------------------------- /config/webpack/loaders/coffee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/coffee.js -------------------------------------------------------------------------------- /config/webpack/loaders/erb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/erb.js -------------------------------------------------------------------------------- /config/webpack/loaders/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/react.js -------------------------------------------------------------------------------- /config/webpack/loaders/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/loaders/sass.js -------------------------------------------------------------------------------- /config/webpack/paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/paths.yml -------------------------------------------------------------------------------- /config/webpack/production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/production.js -------------------------------------------------------------------------------- /config/webpack/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/shared.js -------------------------------------------------------------------------------- /config/webpack/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpack/test.js -------------------------------------------------------------------------------- /config/webpacker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/config/webpacker.yml -------------------------------------------------------------------------------- /frontend/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/config/jest/cssTransform.js -------------------------------------------------------------------------------- /frontend/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/config/jest/fileTransform.js -------------------------------------------------------------------------------- /frontend/config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/config/polyfills.js -------------------------------------------------------------------------------- /frontend/entries/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/entries/app.jsx -------------------------------------------------------------------------------- /frontend/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/scripts/test.js -------------------------------------------------------------------------------- /frontend/spec/app.spec.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/spec/app.spec.jsx -------------------------------------------------------------------------------- /frontend/spec/e2e.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/spec/e2e.spec.js -------------------------------------------------------------------------------- /frontend/spec/helpers/visit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/spec/helpers/visit.js -------------------------------------------------------------------------------- /frontend/src/components/about.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/components/about.jsx -------------------------------------------------------------------------------- /frontend/src/components/appbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/components/appbar.jsx -------------------------------------------------------------------------------- /frontend/src/components/home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/components/home.jsx -------------------------------------------------------------------------------- /frontend/src/layouts/application.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/layouts/application.jsx -------------------------------------------------------------------------------- /frontend/src/styles/appbar.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/styles/appbar.sass -------------------------------------------------------------------------------- /frontend/src/styles/application.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/styles/application.sass -------------------------------------------------------------------------------- /frontend/src/styles/fonts.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/frontend/src/styles/fonts.sass -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/entries/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/public/entries/manifest.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /vendor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/vendor/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gauravtiwari/webpacker-react-frontend/HEAD/yarn.lock --------------------------------------------------------------------------------