├── .gitignore ├── .rubocop.yml ├── .tool-versions ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── deployed_manifest.js │ ├── images │ │ └── deployed │ │ │ └── .keep │ ├── javascripts │ │ └── deployed │ │ │ └── application.js │ └── stylesheets │ │ └── deployed │ │ ├── deployed.css │ │ └── src │ │ └── input.css ├── controllers │ ├── concerns │ │ └── .keep │ └── deployed │ │ ├── application_controller.rb │ │ ├── config_controller.rb │ │ ├── git_controller.rb │ │ ├── log_output_controller.rb │ │ ├── run_controller.rb │ │ ├── setup_controller.rb │ │ └── welcome_controller.rb ├── helpers │ └── deployed │ │ ├── application_helper.rb │ │ └── log_output_helper.rb ├── models │ ├── concerns │ │ └── .keep │ └── deployed │ │ ├── config.rb │ │ └── current_execution.rb └── views │ ├── deployed │ ├── git │ │ └── uncommitted_check.html.erb │ ├── setup │ │ └── new.html.erb │ └── welcome │ │ └── index.html.erb │ └── layouts │ └── deployed │ └── application.html.erb ├── bin ├── dev ├── rails └── setup ├── config └── routes.rb ├── deployed.gemspec ├── lib ├── deployed.rb ├── deployed │ ├── engine.rb │ └── version.rb └── tasks │ └── deployed_tasks.rake ├── package.json ├── tailwind.config.js └── test ├── controllers └── .keep ├── dummy ├── Rakefile ├── app │ ├── assets │ │ ├── config │ │ │ └── manifest.js │ │ ├── images │ │ │ └── .keep │ │ └── stylesheets │ │ │ └── application.css │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ ├── controllers │ │ ├── application_controller.rb │ │ └── concerns │ │ │ └── .keep │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── mailers │ │ └── application_mailer.rb │ ├── models │ │ ├── application_record.rb │ │ └── concerns │ │ │ └── .keep │ └── views │ │ └── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb ├── bin │ ├── rails │ ├── rake │ └── setup ├── config.ru ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── database.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── initializers │ │ ├── assets.rb │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ ├── inflections.rb │ │ └── permissions_policy.rb │ ├── locales │ │ └── en.yml │ ├── puma.rb │ ├── routes.rb │ ├── storage.yml │ └── tailwind.config.js ├── lib │ └── assets │ │ └── .keep ├── log │ └── .keep └── public │ ├── 404.html │ ├── 422.html │ ├── 500.html │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ └── favicon.ico ├── fixtures └── files │ └── .keep ├── helpers └── .keep ├── integration ├── .keep └── navigation_test.rb ├── kamal_rails_test.rb ├── mailers └── .keep ├── models └── .keep └── test_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.18.2 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/deployed_manifest.js: -------------------------------------------------------------------------------- 1 | //= link_directory ../stylesheets/deployed .css 2 | -------------------------------------------------------------------------------- /app/assets/images/deployed/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/deployed/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/assets/javascripts/deployed/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/deployed/deployed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/assets/stylesheets/deployed/deployed.css -------------------------------------------------------------------------------- /app/assets/stylesheets/deployed/src/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/assets/stylesheets/deployed/src/input.css -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/deployed/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/config_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/config_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/git_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/git_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/log_output_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/log_output_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/run_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/run_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/setup_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/setup_controller.rb -------------------------------------------------------------------------------- /app/controllers/deployed/welcome_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/controllers/deployed/welcome_controller.rb -------------------------------------------------------------------------------- /app/helpers/deployed/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/helpers/deployed/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/deployed/log_output_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/helpers/deployed/log_output_helper.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/deployed/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/models/deployed/config.rb -------------------------------------------------------------------------------- /app/models/deployed/current_execution.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/models/deployed/current_execution.rb -------------------------------------------------------------------------------- /app/views/deployed/git/uncommitted_check.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/views/deployed/git/uncommitted_check.html.erb -------------------------------------------------------------------------------- /app/views/deployed/setup/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/views/deployed/setup/new.html.erb -------------------------------------------------------------------------------- /app/views/deployed/welcome/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/views/deployed/welcome/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/deployed/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/app/views/layouts/deployed/application.html.erb -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/bin/setup -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/config/routes.rb -------------------------------------------------------------------------------- /deployed.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/deployed.gemspec -------------------------------------------------------------------------------- /lib/deployed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/lib/deployed.rb -------------------------------------------------------------------------------- /lib/deployed/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/lib/deployed/engine.rb -------------------------------------------------------------------------------- /lib/deployed/version.rb: -------------------------------------------------------------------------------- 1 | module Deployed 2 | VERSION = "0.1.3" 3 | end 4 | -------------------------------------------------------------------------------- /lib/tasks/deployed_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/lib/tasks/deployed_tasks.rake -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/package.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/Rakefile -------------------------------------------------------------------------------- /test/dummy/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/assets/config/manifest.js -------------------------------------------------------------------------------- /test/dummy/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /test/dummy/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /test/dummy/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /test/dummy/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/jobs/application_job.rb -------------------------------------------------------------------------------- /test/dummy/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /test/dummy/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/models/application_record.rb -------------------------------------------------------------------------------- /test/dummy/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /test/dummy/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /test/dummy/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/bin/rails -------------------------------------------------------------------------------- /test/dummy/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/bin/rake -------------------------------------------------------------------------------- /test/dummy/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/bin/setup -------------------------------------------------------------------------------- /test/dummy/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config.ru -------------------------------------------------------------------------------- /test/dummy/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/application.rb -------------------------------------------------------------------------------- /test/dummy/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/boot.rb -------------------------------------------------------------------------------- /test/dummy/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/cable.yml -------------------------------------------------------------------------------- /test/dummy/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/database.yml -------------------------------------------------------------------------------- /test/dummy/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/environment.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/environments/development.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/environments/production.rb -------------------------------------------------------------------------------- /test/dummy/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/environments/test.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/initializers/assets.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/initializers/inflections.rb -------------------------------------------------------------------------------- /test/dummy/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /test/dummy/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/locales/en.yml -------------------------------------------------------------------------------- /test/dummy/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/puma.rb -------------------------------------------------------------------------------- /test/dummy/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/routes.rb -------------------------------------------------------------------------------- /test/dummy/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/storage.yml -------------------------------------------------------------------------------- /test/dummy/config/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/config/tailwind.config.js -------------------------------------------------------------------------------- /test/dummy/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/public/404.html -------------------------------------------------------------------------------- /test/dummy/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/public/422.html -------------------------------------------------------------------------------- /test/dummy/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/dummy/public/500.html -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/dummy/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/navigation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/integration/navigation_test.rb -------------------------------------------------------------------------------- /test/kamal_rails_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/kamal_rails_test.rb -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geetfun/deployed/HEAD/test/test_helper.rb --------------------------------------------------------------------------------