├── .env.sample ├── .gitattributes ├── .gitignore ├── .rspec ├── .ruby-version ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── Procfile.dev ├── README.md ├── Rakefile ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ ├── profile.png │ │ └── undraw_profile.svg │ └── stylesheets │ │ ├── admin.scss │ │ ├── application.bootstrap.scss │ │ ├── devise.scss │ │ ├── devise │ │ └── style.css │ │ └── sbadmin │ │ └── sbadmin.min.css ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── addresses_controller.rb │ ├── admin │ │ ├── base_controller.rb │ │ ├── categories_controller.rb │ │ ├── home_controller.rb │ │ └── products_controller.rb │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── home_controller.rb │ └── settings_controller.rb ├── helpers │ ├── application_helper.rb │ ├── home_helper.rb │ └── user_helper.rb ├── javascript │ ├── admin.js │ ├── application.js │ ├── controllers │ │ ├── admin_modal_controller.js │ │ ├── application.js │ │ ├── hello_controller.js │ │ ├── index.js │ │ └── modal_controller.js │ ├── devise.js │ ├── jquery.js │ ├── mask.js │ └── sbadmin │ │ ├── jquery-easing │ │ └── jquery.easing.min.js │ │ └── sbadmin.js ├── jobs │ └── application_job.rb ├── mailers │ └── application_mailer.rb ├── models │ ├── address.rb │ ├── application_record.rb │ ├── category.rb │ ├── concerns │ │ └── .keep │ ├── product.rb │ └── user.rb ├── policies │ ├── application_policy.rb │ └── product_policy.rb ├── presenters │ └── product_presenter.rb └── views │ ├── addresses │ ├── index.html.erb │ └── new.html.erb │ ├── admin │ ├── categories │ │ ├── _category.html.erb │ │ ├── _form.html.erb │ │ ├── _form_modal.html.erb │ │ ├── edit.html.erb │ │ ├── edit.turbo_stream.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── new.turbo_stream.erb │ │ └── show.html.erb │ ├── home │ │ └── index.html.erb │ └── products │ │ ├── _form.html.erb │ │ ├── _form_modal.html.erb │ │ ├── _product.html.erb │ │ ├── edit.html.erb │ │ ├── edit.turbo_stream.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── new.turbo_stream.erb │ │ └── show.html.erb │ ├── devise │ ├── confirmations │ │ └── new.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── email_changed.html.erb │ │ ├── password_change.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ ├── _button_submit.html.erb │ │ ├── _error_messages.html.erb │ │ └── _links.html.erb │ └── unlocks │ │ └── new.html.erb │ ├── home │ └── index.html.erb │ ├── layouts │ ├── admin.html.erb │ ├── admin │ │ ├── _footer.html.erb │ │ ├── _sidebar.html.erb │ │ └── _topbar.html.erb │ ├── application.html.erb │ ├── devise.html.erb │ ├── mailer.html.erb │ ├── mailer.text.erb │ ├── shared │ │ └── _flash.html.erb │ └── store │ │ ├── _footer.html.erb │ │ ├── _nav.html.erb │ │ └── _user_signed_in.html.erb │ └── settings │ ├── _menu.html.erb │ ├── index.html.erb │ └── password.html.erb ├── bin ├── bundle ├── dev ├── rails ├── rake └── setup ├── config.ru ├── config ├── application.rb ├── boot.rb ├── cable.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── content_security_policy.rb │ ├── devise.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── permissions_policy.rb │ ├── simple_form.rb │ └── simple_form_bootstrap.rb ├── locales │ ├── devise.en.yml │ ├── en.yml │ └── simple_form.en.yml ├── puma.rb ├── routes.rb └── storage.yml ├── db ├── migrate │ ├── 20221008003537_devise_create_users.rb │ ├── 20221022011103_add_column_role_to_user.rb │ ├── 20221104231300_create_categories.rb │ ├── 20221105004205_create_products.rb │ ├── 20221112000829_create_active_storage_tables.active_storage.rb │ ├── 20221202232713_add_fields_promo_to_products.rb │ └── 20230204002530_create_addresses.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── lib ├── assets │ └── .keep ├── tasks │ └── .keep └── templates │ └── erb │ └── scaffold │ └── _form.html.erb ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── apple-touch-icon-precomposed.png ├── apple-touch-icon.png ├── favicon.ico └── robots.txt ├── spec ├── factories │ ├── addresses.rb │ ├── categories.rb │ ├── products.rb │ └── users.rb ├── models │ ├── address_spec.rb │ ├── category_spec.rb │ ├── product_spec.rb │ └── user_spec.rb ├── rails_helper.rb ├── requests │ ├── categories_spec.rb │ └── home_spec.rb ├── spec_helper.rb └── support │ ├── database_cleaner.rb │ └── factory_bot.rb ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ └── .keep ├── fixtures │ └── files │ │ └── .keep ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ └── .keep ├── system │ └── .keep └── test_helper.rb ├── tmp ├── .keep ├── pids │ └── .keep └── storage │ └── .keep ├── vendor └── .keep └── yarn.lock /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-3.1.0 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/images/profile.png -------------------------------------------------------------------------------- /app/assets/images/undraw_profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/images/undraw_profile.svg -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/stylesheets/admin.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/stylesheets/application.bootstrap.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/devise.scss: -------------------------------------------------------------------------------- 1 | @import 'devise/style.css'; 2 | -------------------------------------------------------------------------------- /app/assets/stylesheets/devise/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/stylesheets/devise/style.css -------------------------------------------------------------------------------- /app/assets/stylesheets/sbadmin/sbadmin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/assets/stylesheets/sbadmin/sbadmin.min.css -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/addresses_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/addresses_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/base_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/admin/base_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/categories_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/admin/categories_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/admin/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/products_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/admin/products_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/settings_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/controllers/settings_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/user_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/helpers/user_helper.rb -------------------------------------------------------------------------------- /app/javascript/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/admin.js -------------------------------------------------------------------------------- /app/javascript/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/admin_modal_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/controllers/admin_modal_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/controllers/application.js -------------------------------------------------------------------------------- /app/javascript/controllers/hello_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/controllers/hello_controller.js -------------------------------------------------------------------------------- /app/javascript/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/controllers/index.js -------------------------------------------------------------------------------- /app/javascript/controllers/modal_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/controllers/modal_controller.js -------------------------------------------------------------------------------- /app/javascript/devise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/devise.js -------------------------------------------------------------------------------- /app/javascript/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/jquery.js -------------------------------------------------------------------------------- /app/javascript/mask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/mask.js -------------------------------------------------------------------------------- /app/javascript/sbadmin/jquery-easing/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/sbadmin/jquery-easing/jquery.easing.min.js -------------------------------------------------------------------------------- /app/javascript/sbadmin/sbadmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/javascript/sbadmin/sbadmin.js -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/models/address.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/models/address.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/category.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/models/category.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/policies/application_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/policies/application_policy.rb -------------------------------------------------------------------------------- /app/policies/product_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/policies/product_policy.rb -------------------------------------------------------------------------------- /app/presenters/product_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/presenters/product_presenter.rb -------------------------------------------------------------------------------- /app/views/addresses/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/addresses/index.html.erb -------------------------------------------------------------------------------- /app/views/addresses/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/addresses/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_category.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/_category.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/_form_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/_form_modal.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/edit.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/edit.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/admin/categories/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/categories/new.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/new.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/admin/categories/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/categories/show.html.erb -------------------------------------------------------------------------------- /app/views/admin/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/home/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/_form_modal.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/_form_modal.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/_product.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/_product.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/edit.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/edit.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/admin/products/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/products/new.turbo_stream.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/new.turbo_stream.erb -------------------------------------------------------------------------------- /app/views/admin/products/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/admin/products/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/email_changed.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/mailer/email_changed.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/password_change.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/mailer/password_change.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_button_submit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/shared/_button_submit.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_error_messages.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/shared/_error_messages.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/shared/_links.html.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/admin.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/admin/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin/_sidebar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/admin/_sidebar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/admin/_topbar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/admin/_topbar.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/devise.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/devise.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/layouts/shared/_flash.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/shared/_flash.html.erb -------------------------------------------------------------------------------- /app/views/layouts/store/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/store/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/store/_nav.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/store/_nav.html.erb -------------------------------------------------------------------------------- /app/views/layouts/store/_user_signed_in.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/layouts/store/_user_signed_in.html.erb -------------------------------------------------------------------------------- /app/views/settings/_menu.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/settings/_menu.html.erb -------------------------------------------------------------------------------- /app/views/settings/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/settings/index.html.erb -------------------------------------------------------------------------------- /app/views/settings/password.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/app/views/settings/password.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/bin/setup -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /config/initializers/simple_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/simple_form.rb -------------------------------------------------------------------------------- /config/initializers/simple_form_bootstrap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/initializers/simple_form_bootstrap.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/simple_form.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/locales/simple_form.en.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20221008003537_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221008003537_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20221022011103_add_column_role_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221022011103_add_column_role_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20221104231300_create_categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221104231300_create_categories.rb -------------------------------------------------------------------------------- /db/migrate/20221105004205_create_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221105004205_create_products.rb -------------------------------------------------------------------------------- /db/migrate/20221112000829_create_active_storage_tables.active_storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221112000829_create_active_storage_tables.active_storage.rb -------------------------------------------------------------------------------- /db/migrate/20221202232713_add_fields_promo_to_products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20221202232713_add_fields_promo_to_products.rb -------------------------------------------------------------------------------- /db/migrate/20230204002530_create_addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/migrate/20230204002530_create_addresses.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/public/500.html -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/factories/addresses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/factories/addresses.rb -------------------------------------------------------------------------------- /spec/factories/categories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/factories/categories.rb -------------------------------------------------------------------------------- /spec/factories/products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/factories/products.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/models/address_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/models/address_spec.rb -------------------------------------------------------------------------------- /spec/models/category_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/models/category_spec.rb -------------------------------------------------------------------------------- /spec/models/product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/models/product_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/requests/categories_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/requests/categories_spec.rb -------------------------------------------------------------------------------- /spec/requests/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/requests/home_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/database_cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/support/database_cleaner.rb -------------------------------------------------------------------------------- /spec/support/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/spec/support/factory_bot.rb -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progshowzim/ecommerce_showzim/HEAD/yarn.lock --------------------------------------------------------------------------------