gitextract_vbzc0pcq/ ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── backend_test.yml │ └── frontend_test.yml ├── .gitignore ├── README.md ├── backend/ │ ├── .gitignore │ ├── .ruby-version │ ├── Dockerfile │ ├── Gemfile │ ├── LICENSE │ ├── README.md │ ├── Rakefile │ ├── app/ │ │ ├── assets/ │ │ │ ├── config/ │ │ │ │ └── manifest.js │ │ │ ├── images/ │ │ │ │ └── .keep │ │ │ ├── javascripts/ │ │ │ │ ├── application.js │ │ │ │ ├── cable.js │ │ │ │ └── channels/ │ │ │ │ └── .keep │ │ │ └── stylesheets/ │ │ │ └── application.css │ │ ├── channels/ │ │ │ └── application_cable/ │ │ │ ├── channel.rb │ │ │ └── connection.rb │ │ ├── controllers/ │ │ │ ├── application_controller.rb │ │ │ ├── concerns/ │ │ │ │ └── .keep │ │ │ └── greetings_controller.rb │ │ ├── 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/ │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ ├── spring │ │ ├── update │ │ └── yarn │ ├── config/ │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── credentials.yml.enc │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments/ │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers/ │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── new_framework_defaults_6_0.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales/ │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── spring.rb │ │ └── storage.yml │ ├── config.ru │ ├── db/ │ │ ├── schema.rb │ │ └── seeds.rb │ ├── lib/ │ │ ├── assets/ │ │ │ └── .keep │ │ └── tasks/ │ │ └── .keep │ ├── log/ │ │ └── .keep │ ├── prehook │ ├── public/ │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ └── robots.txt │ ├── test/ │ │ ├── application_system_test_case.rb │ │ ├── controllers/ │ │ │ └── .keep │ │ ├── fixtures/ │ │ │ ├── .keep │ │ │ └── files/ │ │ │ └── .keep │ │ ├── helpers/ │ │ │ └── .keep │ │ ├── integration/ │ │ │ └── .keep │ │ ├── mailers/ │ │ │ └── .keep │ │ ├── models/ │ │ │ └── .keep │ │ ├── routing/ │ │ │ └── routing_test.rb │ │ ├── system/ │ │ │ └── .keep │ │ └── test_helper.rb │ └── vendor/ │ └── .keep ├── docker-compose.yml └── frontend/ ├── .gitignore ├── jest.config.js ├── package.json ├── src/ │ ├── App.css │ ├── App.tsx │ ├── __tests__/ │ │ ├── App.test.tsx │ │ └── styleMock.js │ ├── index.css │ ├── index.html │ └── index.tsx ├── tsconfig.json └── webpack.config.js