├── .dockerignore ├── .env.example ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── LICENSE.txt ├── Procfile ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ ├── new_styles_folder.png │ │ └── sassish.png │ ├── javascripts │ │ ├── application.js │ │ ├── bootstrap.js.coffee │ │ └── main.js.coffee │ └── stylesheets │ │ ├── application-welcome.css │ │ ├── application.css │ │ ├── bootstrap_and_overrides.css.less │ │ ├── common │ │ └── .gitkeep │ │ ├── main │ │ ├── base │ │ │ ├── _forms.sass │ │ │ ├── _globals.sass │ │ │ ├── _icons.sass │ │ │ ├── _typography.sass │ │ │ └── _utils.sass │ │ ├── core │ │ │ ├── _colors.sass │ │ │ ├── _mixins.sass │ │ │ └── _variables.sass │ │ ├── index.sass │ │ └── styles │ │ │ └── .keep │ │ └── welcome │ │ ├── cover.css │ │ └── test.sass ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── dashboard_controller.rb │ └── welcome_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ ├── ability.rb │ ├── concerns │ │ └── .keep │ └── user.rb ├── views │ ├── devise │ │ ├── confirmations │ │ │ └── new.html.haml │ │ ├── mailer │ │ │ ├── confirmation_instructions.html.haml │ │ │ ├── reset_password_instructions.html.haml │ │ │ └── unlock_instructions.html.haml │ │ ├── passwords │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── registrations │ │ │ ├── edit.html.haml │ │ │ └── new.html.haml │ │ ├── sessions │ │ │ ├── _sign_in_form.html.haml │ │ │ └── new.html.haml │ │ ├── shared │ │ │ └── _links.haml │ │ └── unlocks │ │ │ └── new.html.haml │ ├── layouts │ │ ├── _messages.html.haml │ │ ├── _navigation.html.haml │ │ ├── _navigation_links.html.erb │ │ ├── application.html.haml │ │ ├── root.html.haml │ │ └── welcome.html.haml │ ├── partials │ │ └── _analytics_scripts.html.haml │ └── welcome │ │ └── index.html.haml └── workers │ └── my_worker.rb ├── bin ├── bundle ├── rails └── rake ├── config.ru ├── config ├── application.rb ├── boot.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── rack_profiler.rb │ ├── sassish.rb │ ├── security_headers.rb │ ├── session_store.rb │ ├── shog.rb │ ├── sidekiq.rb │ ├── simple_form.rb │ ├── simple_form_bootstrap.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ ├── en.bootstrap.yml │ ├── en.yml │ └── simple_form.en.yml ├── mongoid.yml.example ├── routes.rb ├── secrets.yml.example └── unicorn.rb ├── contributors.txt ├── custom_plan.rb ├── db └── seeds.rb ├── deploy └── kubernetes │ ├── docker-compose-kubernetes.yml │ ├── mongo-pod.json │ ├── mongo-service.json │ ├── redis-pod.json │ ├── redis-service.json │ ├── webapp-rc-version2.yml │ ├── webapp-rc.yml │ ├── webapp-service.yml │ └── worker-rc.yml ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── generators │ └── rails │ │ └── precompiled_stylesheet_generator.rb ├── sassish │ ├── sassish.rb │ └── sassish │ │ ├── engine.rb │ │ ├── extensions │ │ └── generators │ │ │ ├── sass │ │ │ └── assets │ │ │ │ └── assets_generator.rb │ │ │ └── scss │ │ │ └── assets │ │ │ └── assets_generator.rb │ │ └── view_helper.rb ├── tasks │ ├── .keep │ └── code_quality.rake └── templates │ └── haml │ └── scaffold │ └── _form.html.haml ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── cassettes │ └── Welcome_Page │ │ ├── do_the_ping.yml │ │ └── with_VCR │ │ └── do_the_ping.yml ├── factories │ └── users.rb ├── features │ ├── session_spec.rb │ └── welcome_spec.rb ├── helpers │ └── action_view_spec.rb ├── lib │ ├── sassish_generator_spec.rb │ ├── sassish_spec.rb │ └── scaffold_generator_spec.rb ├── rails_helper.rb └── spec_helper.rb ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── zeus.json /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.2.2 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/new_styles_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/images/new_styles_folder.png -------------------------------------------------------------------------------- /app/assets/images/sassish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/images/sassish.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/bootstrap.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/javascripts/bootstrap.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/main.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/javascripts/main.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/application-welcome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/application-welcome.css -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/bootstrap_and_overrides.css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/bootstrap_and_overrides.css.less -------------------------------------------------------------------------------- /app/assets/stylesheets/common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/base/_forms.sass: -------------------------------------------------------------------------------- 1 | .common_form 2 | background-color: $gray 3 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/base/_globals.sass: -------------------------------------------------------------------------------- 1 | body 2 | background-color: $blue 3 | main 4 | margin-top: 51px 5 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/base/_icons.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/base/_typography.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/base/_utils.sass: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/core/_colors.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/main/core/_colors.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/main/core/_mixins.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/core/_variables.sass: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/main/index.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/main/index.sass -------------------------------------------------------------------------------- /app/assets/stylesheets/main/styles/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/stylesheets/welcome/cover.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/welcome/cover.css -------------------------------------------------------------------------------- /app/assets/stylesheets/welcome/test.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/assets/stylesheets/welcome/test.sass -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/dashboard_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/controllers/dashboard_controller.rb -------------------------------------------------------------------------------- /app/controllers/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/controllers/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/confirmations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/mailer/confirmation_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/mailer/reset_password_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/mailer/unlock_instructions.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/registrations/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/registrations/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/_sign_in_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/sessions/_sign_in_form.html.haml -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/shared/_links.haml -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/devise/unlocks/new.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_messages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/layouts/_messages.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navigation.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/layouts/_navigation.html.haml -------------------------------------------------------------------------------- /app/views/layouts/_navigation_links.html.erb: -------------------------------------------------------------------------------- 1 | <%# add navigation links to this file %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/root.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/layouts/root.html.haml -------------------------------------------------------------------------------- /app/views/layouts/welcome.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/layouts/welcome.html.haml -------------------------------------------------------------------------------- /app/views/partials/_analytics_scripts.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/partials/_analytics_scripts.html.haml -------------------------------------------------------------------------------- /app/views/welcome/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/views/welcome/index.html.haml -------------------------------------------------------------------------------- /app/workers/my_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/app/workers/my_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/bin/rake -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/rack_profiler.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/rack_profiler.rb -------------------------------------------------------------------------------- /config/initializers/sassish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/sassish.rb -------------------------------------------------------------------------------- /config/initializers/security_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/security_headers.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/shog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/shog.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/locales/en.bootstrap.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/mongoid.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/mongoid.yml.example -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/secrets.yml.example -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- 1 | Johan Tique 2 | Miguel Diaz 3 | -------------------------------------------------------------------------------- /custom_plan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/custom_plan.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /deploy/kubernetes/docker-compose-kubernetes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/docker-compose-kubernetes.yml -------------------------------------------------------------------------------- /deploy/kubernetes/mongo-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/mongo-pod.json -------------------------------------------------------------------------------- /deploy/kubernetes/mongo-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/mongo-service.json -------------------------------------------------------------------------------- /deploy/kubernetes/redis-pod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/redis-pod.json -------------------------------------------------------------------------------- /deploy/kubernetes/redis-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/redis-service.json -------------------------------------------------------------------------------- /deploy/kubernetes/webapp-rc-version2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/webapp-rc-version2.yml -------------------------------------------------------------------------------- /deploy/kubernetes/webapp-rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/webapp-rc.yml -------------------------------------------------------------------------------- /deploy/kubernetes/webapp-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/webapp-service.yml -------------------------------------------------------------------------------- /deploy/kubernetes/worker-rc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/deploy/kubernetes/worker-rc.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/generators/rails/precompiled_stylesheet_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/generators/rails/precompiled_stylesheet_generator.rb -------------------------------------------------------------------------------- /lib/sassish/sassish.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/sassish/sassish.rb -------------------------------------------------------------------------------- /lib/sassish/sassish/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/sassish/sassish/engine.rb -------------------------------------------------------------------------------- /lib/sassish/sassish/extensions/generators/sass/assets/assets_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/sassish/sassish/extensions/generators/sass/assets/assets_generator.rb -------------------------------------------------------------------------------- /lib/sassish/sassish/extensions/generators/scss/assets/assets_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/sassish/sassish/extensions/generators/scss/assets/assets_generator.rb -------------------------------------------------------------------------------- /lib/sassish/sassish/view_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/sassish/sassish/view_helper.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/code_quality.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/tasks/code_quality.rake -------------------------------------------------------------------------------- /lib/templates/haml/scaffold/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/lib/templates/haml/scaffold/_form.html.haml -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/cassettes/Welcome_Page/do_the_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/cassettes/Welcome_Page/do_the_ping.yml -------------------------------------------------------------------------------- /spec/cassettes/Welcome_Page/with_VCR/do_the_ping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/cassettes/Welcome_Page/with_VCR/do_the_ping.yml -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/features/session_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/features/session_spec.rb -------------------------------------------------------------------------------- /spec/features/welcome_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/features/welcome_spec.rb -------------------------------------------------------------------------------- /spec/helpers/action_view_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/helpers/action_view_spec.rb -------------------------------------------------------------------------------- /spec/lib/sassish_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/lib/sassish_generator_spec.rb -------------------------------------------------------------------------------- /spec/lib/sassish_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/lib/sassish_spec.rb -------------------------------------------------------------------------------- /spec/lib/scaffold_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/lib/scaffold_generator_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zeus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codescrum/rails-template-docker-kubernetes/HEAD/zeus.json --------------------------------------------------------------------------------