├── .gitignore ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── api │ │ └── v1 │ │ │ └── base_controller.rb │ ├── application_controller.rb │ └── concerns │ │ └── .keep ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── application_record.rb │ └── concerns │ │ └── .keep ├── serializers │ └── .keep └── views │ └── layouts │ ├── mailer.html.erb │ └── mailer.text.erb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring └── update ├── client ├── .babelrc ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config │ ├── aliases.js │ ├── dll │ │ └── webpack.dll.js │ ├── environments │ │ ├── webpack.development.js │ │ └── webpack.production.js │ ├── loaders.js │ └── plugins.js ├── dist │ └── .keep ├── package.json ├── scripts │ ├── entrypoint.sh │ └── frontend_entrypoint.sh ├── server.js ├── src │ ├── actions │ │ ├── .keep │ │ └── actions.jsx │ ├── app.jsx │ ├── components │ │ └── MyTitle.jsx │ ├── containers │ │ └── MyContainer.jsx │ ├── index.html │ ├── reducers │ │ └── reducer.jsx │ ├── static │ │ └── .keep │ ├── stores │ │ ├── .keep │ │ └── store.js │ ├── stylesheets │ │ ├── base │ │ │ ├── _all.sass │ │ │ ├── containers.sass │ │ │ └── forms.sass │ │ ├── components │ │ │ └── _all.sass │ │ ├── containers │ │ │ └── _all.sass │ │ ├── main.sass │ │ ├── utils │ │ │ ├── _all.sass │ │ │ └── mixins.sass │ │ └── vars │ │ │ ├── _all.sass │ │ │ ├── colors.sass │ │ │ └── dimens.sass │ └── templates │ │ ├── index.development.ejs │ │ └── index.production.ejs ├── vendor │ └── vendor.js └── webpack.config.js ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── active_model_serializer.rb │ ├── application_controller_renderer.rb │ ├── backtrace_silencers.rb │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── new_framework_defaults.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── nginx │ └── nginx.conf ├── puma.rb ├── routes.rb ├── secrets.example.yml └── spring.rb ├── db └── seeds.rb ├── docker-compose.yml ├── lib └── tasks │ └── .keep ├── public └── robots.txt └── scripts ├── backend_entrypoint.sh ├── entrypoint.sh └── generate_secrets.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/Rakefile -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/controllers/api/v1/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/serializers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/bin/update -------------------------------------------------------------------------------- /client/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/.babelrc -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/Dockerfile -------------------------------------------------------------------------------- /client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/LICENSE -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/README.md -------------------------------------------------------------------------------- /client/config/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/aliases.js -------------------------------------------------------------------------------- /client/config/dll/webpack.dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/dll/webpack.dll.js -------------------------------------------------------------------------------- /client/config/environments/webpack.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/environments/webpack.development.js -------------------------------------------------------------------------------- /client/config/environments/webpack.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/environments/webpack.production.js -------------------------------------------------------------------------------- /client/config/loaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/loaders.js -------------------------------------------------------------------------------- /client/config/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/config/plugins.js -------------------------------------------------------------------------------- /client/dist/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/package.json -------------------------------------------------------------------------------- /client/scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/scripts/entrypoint.sh -------------------------------------------------------------------------------- /client/scripts/frontend_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/scripts/frontend_entrypoint.sh -------------------------------------------------------------------------------- /client/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/server.js -------------------------------------------------------------------------------- /client/src/actions/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/actions/actions.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/actions/actions.jsx -------------------------------------------------------------------------------- /client/src/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/app.jsx -------------------------------------------------------------------------------- /client/src/components/MyTitle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/components/MyTitle.jsx -------------------------------------------------------------------------------- /client/src/containers/MyContainer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/containers/MyContainer.jsx -------------------------------------------------------------------------------- /client/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/index.html -------------------------------------------------------------------------------- /client/src/reducers/reducer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/reducers/reducer.jsx -------------------------------------------------------------------------------- /client/src/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/stores/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/src/stores/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stores/store.js -------------------------------------------------------------------------------- /client/src/stylesheets/base/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/base/_all.sass -------------------------------------------------------------------------------- /client/src/stylesheets/base/containers.sass: -------------------------------------------------------------------------------- 1 | // Styles for containers 2 | -------------------------------------------------------------------------------- /client/src/stylesheets/base/forms.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/base/forms.sass -------------------------------------------------------------------------------- /client/src/stylesheets/components/_all.sass: -------------------------------------------------------------------------------- 1 | // Import the folder 2 | -------------------------------------------------------------------------------- /client/src/stylesheets/containers/_all.sass: -------------------------------------------------------------------------------- 1 | // Import the folder 2 | -------------------------------------------------------------------------------- /client/src/stylesheets/main.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/main.sass -------------------------------------------------------------------------------- /client/src/stylesheets/utils/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/utils/_all.sass -------------------------------------------------------------------------------- /client/src/stylesheets/utils/mixins.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/utils/mixins.sass -------------------------------------------------------------------------------- /client/src/stylesheets/vars/_all.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/vars/_all.sass -------------------------------------------------------------------------------- /client/src/stylesheets/vars/colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/stylesheets/vars/colors.sass -------------------------------------------------------------------------------- /client/src/stylesheets/vars/dimens.sass: -------------------------------------------------------------------------------- 1 | // Dimensions of the page 2 | $d_text: 100% 3 | -------------------------------------------------------------------------------- /client/src/templates/index.development.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/templates/index.development.ejs -------------------------------------------------------------------------------- /client/src/templates/index.production.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/src/templates/index.production.ejs -------------------------------------------------------------------------------- /client/vendor/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/vendor/vendor.js -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/active_model_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/active_model_serializer.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_framework_defaults.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/new_framework_defaults.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/nginx/nginx.conf -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/secrets.example.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/config/spring.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/public/robots.txt -------------------------------------------------------------------------------- /scripts/backend_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/scripts/backend_entrypoint.sh -------------------------------------------------------------------------------- /scripts/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/scripts/entrypoint.sh -------------------------------------------------------------------------------- /scripts/generate_secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Angelmmiguel/docker-rails5-react-redux-boilerplate/HEAD/scripts/generate_secrets.sh --------------------------------------------------------------------------------