├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── .keep │ │ └── zinger-logo.png │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── .keep ├── channels │ └── application_cable │ │ ├── channel.rb │ │ └── connection.rb ├── controllers │ ├── admin │ │ ├── auth_controller.rb │ │ ├── item_controller.rb │ │ ├── order_controller.rb │ │ ├── shop_controller.rb │ │ └── user_profile_controller.rb │ ├── admin_controller.rb │ ├── api │ │ ├── auth_controller.rb │ │ ├── items_controller.rb │ │ ├── order_controller.rb │ │ ├── session_controller.rb │ │ ├── shop_controller.rb │ │ └── user_profile_controller.rb │ ├── api_controller.rb │ ├── application_controller.rb │ ├── platform │ │ ├── auth_controller.rb │ │ ├── item_config_controller.rb │ │ ├── item_controller.rb │ │ ├── order_controller.rb │ │ ├── shop_controller.rb │ │ └── user_profile_controller.rb │ └── platform_controller.rb ├── helpers │ └── application_helper.rb ├── jobs │ └── application_job.rb ├── mailers │ ├── application_mailer.rb │ ├── auth_mailer.rb │ └── platform_mailer.rb ├── models │ ├── admin_user.rb │ ├── admin_user_session.rb │ ├── application_record.rb │ ├── concerns │ │ └── .keep │ ├── conversation.rb │ ├── customer.rb │ ├── customer_session.rb │ ├── item.rb │ ├── item_config.rb │ ├── item_variant.rb │ ├── order.rb │ ├── order_item.rb │ ├── order_transaction.rb │ ├── platform_user.rb │ ├── platform_user_session.rb │ ├── shop.rb │ └── shop_detail.rb ├── views │ ├── auth_mailer │ │ ├── email_otp.html.erb │ │ └── email_otp.text.erb │ ├── layouts │ │ ├── application.html.erb │ │ ├── mailer.html.erb │ │ └── mailer.text.erb │ └── platform_mailer │ │ ├── notify.html.erb │ │ └── notify.text.erb └── workers │ └── mailer_worker.rb ├── bin ├── bundle ├── rails ├── rake ├── setup ├── spring └── yarn ├── config.ru ├── config ├── app_config.yml ├── application.rb ├── aws.yml ├── boot.rb ├── cable.yml ├── core_config.yml ├── credentials.yml.enc ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── 00_load_config.rb │ ├── 00_load_constants.rb │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── aws.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── cors.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── redis.rb │ ├── searchkick.rb │ ├── sidekiq.rb │ ├── smtp.rb │ ├── versioncake.rb │ └── wrap_parameters.rb ├── locales │ └── en.yml ├── platform_config.yml ├── puma.rb ├── redis.yml ├── routes.rb ├── sidekiq.yml ├── sidekiq_config.yml ├── smtp_config.yml ├── spring.rb └── storage.yml ├── db ├── migrate │ ├── 20200413092243_create_customers.rb │ ├── 20200413092244_create_customer_sessions.rb │ ├── 20201010114515_create_shops.rb │ ├── 20201105184303_create_shop_details.rb │ ├── 20201107080714_create_admin_users.rb │ ├── 20201107082618_create_admin_user_shops.rb │ ├── 20201107083221_create_admin_user_sessions.rb │ ├── 20210529054130_create_platform_users.rb │ ├── 20210529054505_create_platform_user_sessions.rb │ ├── 20210704095819_create_conversations.rb │ ├── 20211201162423_create_item_config.rb │ ├── 20211201162424_create_item.rb │ ├── 20211226083526_create_item_variant.rb │ ├── 20220415132824_create_orders.rb │ ├── 20220415133718_create_order_items.rb │ ├── 20220415133730_create_order_transaction.rb │ ├── 20220418163633_add_shop_id_to_order_items.rb │ └── 20220420165502_add_deleted_to_orders.rb ├── schema.rb └── seeds.rb ├── docker-compose.yml ├── docker ├── Dockerfile └── run.sh ├── lib ├── assets │ └── .keep ├── core │ ├── ratelimit.rb │ ├── redis.rb │ └── storage.rb ├── tasks │ └── .keep └── validate_param │ ├── base.rb │ ├── item.rb │ ├── order.rb │ └── shop.rb ├── log └── .keep ├── package.json ├── postman ├── Zinger Admin.postman_collection.json ├── Zinger Customer.postman_collection.json └── Zinger Platform.postman_collection.json ├── storage └── .keep ├── test ├── application_system_test_case.rb ├── channels │ └── application_cable │ │ └── connection_test.rb ├── controllers │ └── .keep ├── fixtures │ ├── .keep │ ├── files │ │ └── .keep │ └── users.yml ├── helpers │ └── .keep ├── integration │ └── .keep ├── mailers │ └── .keep ├── models │ ├── .keep │ └── user_test.rb ├── system │ └── .keep └── test_helper.rb └── tmp └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.7.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/images/zinger-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/assets/images/zinger-logo.png -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /app/controllers/admin/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/item_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin/item_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/order_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin/order_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/shop_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin/shop_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/user_profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin/user_profile_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/admin_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/items_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/items_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/order_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/order_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/session_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/session_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/shop_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/shop_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/user_profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api/user_profile_controller.rb -------------------------------------------------------------------------------- /app/controllers/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/auth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/auth_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/item_config_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/item_config_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/item_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/item_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/order_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/order_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/shop_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/shop_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform/user_profile_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform/user_profile_controller.rb -------------------------------------------------------------------------------- /app/controllers/platform_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/controllers/platform_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/jobs/application_job.rb -------------------------------------------------------------------------------- /app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /app/mailers/auth_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/mailers/auth_mailer.rb -------------------------------------------------------------------------------- /app/mailers/platform_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/mailers/platform_mailer.rb -------------------------------------------------------------------------------- /app/models/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/admin_user.rb -------------------------------------------------------------------------------- /app/models/admin_user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/admin_user_session.rb -------------------------------------------------------------------------------- /app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/application_record.rb -------------------------------------------------------------------------------- /app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/conversation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/conversation.rb -------------------------------------------------------------------------------- /app/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/customer.rb -------------------------------------------------------------------------------- /app/models/customer_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/customer_session.rb -------------------------------------------------------------------------------- /app/models/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/item.rb -------------------------------------------------------------------------------- /app/models/item_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/item_config.rb -------------------------------------------------------------------------------- /app/models/item_variant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/item_variant.rb -------------------------------------------------------------------------------- /app/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/order.rb -------------------------------------------------------------------------------- /app/models/order_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/order_item.rb -------------------------------------------------------------------------------- /app/models/order_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/order_transaction.rb -------------------------------------------------------------------------------- /app/models/platform_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/platform_user.rb -------------------------------------------------------------------------------- /app/models/platform_user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/platform_user_session.rb -------------------------------------------------------------------------------- /app/models/shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/shop.rb -------------------------------------------------------------------------------- /app/models/shop_detail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/models/shop_detail.rb -------------------------------------------------------------------------------- /app/views/auth_mailer/email_otp.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/auth_mailer/email_otp.html.erb -------------------------------------------------------------------------------- /app/views/auth_mailer/email_otp.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/auth_mailer/email_otp.text.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /app/views/platform_mailer/notify.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/platform_mailer/notify.html.erb -------------------------------------------------------------------------------- /app/views/platform_mailer/notify.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/views/platform_mailer/notify.text.erb -------------------------------------------------------------------------------- /app/workers/mailer_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/app/workers/mailer_worker.rb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/spring -------------------------------------------------------------------------------- /bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/bin/yarn -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config.ru -------------------------------------------------------------------------------- /config/app_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/app_config.yml -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/aws.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/aws.yml -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/cable.yml -------------------------------------------------------------------------------- /config/core_config.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/credentials.yml.enc -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/00_load_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/00_load_config.rb -------------------------------------------------------------------------------- /config/initializers/00_load_constants.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/00_load_constants.rb -------------------------------------------------------------------------------- /config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/aws.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/aws.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/cors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/cors.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/redis.rb -------------------------------------------------------------------------------- /config/initializers/searchkick.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/searchkick.rb -------------------------------------------------------------------------------- /config/initializers/sidekiq.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/sidekiq.rb -------------------------------------------------------------------------------- /config/initializers/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/smtp.rb -------------------------------------------------------------------------------- /config/initializers/versioncake.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/versioncake.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/platform_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/platform_config.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/redis.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sidekiq.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/sidekiq.yml -------------------------------------------------------------------------------- /config/sidekiq_config.yml: -------------------------------------------------------------------------------- 1 | host: redis 2 | port: 6379 3 | namespace: zinger-skq 4 | -------------------------------------------------------------------------------- /config/smtp_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/smtp_config.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/spring.rb -------------------------------------------------------------------------------- /config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/config/storage.yml -------------------------------------------------------------------------------- /db/migrate/20200413092243_create_customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20200413092243_create_customers.rb -------------------------------------------------------------------------------- /db/migrate/20200413092244_create_customer_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20200413092244_create_customer_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20201010114515_create_shops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20201010114515_create_shops.rb -------------------------------------------------------------------------------- /db/migrate/20201105184303_create_shop_details.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20201105184303_create_shop_details.rb -------------------------------------------------------------------------------- /db/migrate/20201107080714_create_admin_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20201107080714_create_admin_users.rb -------------------------------------------------------------------------------- /db/migrate/20201107082618_create_admin_user_shops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20201107082618_create_admin_user_shops.rb -------------------------------------------------------------------------------- /db/migrate/20201107083221_create_admin_user_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20201107083221_create_admin_user_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20210529054130_create_platform_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20210529054130_create_platform_users.rb -------------------------------------------------------------------------------- /db/migrate/20210529054505_create_platform_user_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20210529054505_create_platform_user_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20210704095819_create_conversations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20210704095819_create_conversations.rb -------------------------------------------------------------------------------- /db/migrate/20211201162423_create_item_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20211201162423_create_item_config.rb -------------------------------------------------------------------------------- /db/migrate/20211201162424_create_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20211201162424_create_item.rb -------------------------------------------------------------------------------- /db/migrate/20211226083526_create_item_variant.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20211226083526_create_item_variant.rb -------------------------------------------------------------------------------- /db/migrate/20220415132824_create_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20220415132824_create_orders.rb -------------------------------------------------------------------------------- /db/migrate/20220415133718_create_order_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20220415133718_create_order_items.rb -------------------------------------------------------------------------------- /db/migrate/20220415133730_create_order_transaction.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20220415133730_create_order_transaction.rb -------------------------------------------------------------------------------- /db/migrate/20220418163633_add_shop_id_to_order_items.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20220418163633_add_shop_id_to_order_items.rb -------------------------------------------------------------------------------- /db/migrate/20220420165502_add_deleted_to_orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/migrate/20220420165502_add_deleted_to_orders.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/docker/run.sh -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/core/ratelimit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/core/ratelimit.rb -------------------------------------------------------------------------------- /lib/core/redis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/core/redis.rb -------------------------------------------------------------------------------- /lib/core/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/core/storage.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/validate_param/base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/validate_param/base.rb -------------------------------------------------------------------------------- /lib/validate_param/item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/validate_param/item.rb -------------------------------------------------------------------------------- /lib/validate_param/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/validate_param/order.rb -------------------------------------------------------------------------------- /lib/validate_param/shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/lib/validate_param/shop.rb -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/package.json -------------------------------------------------------------------------------- /postman/Zinger Admin.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/postman/Zinger Admin.postman_collection.json -------------------------------------------------------------------------------- /postman/Zinger Customer.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/postman/Zinger Customer.postman_collection.json -------------------------------------------------------------------------------- /postman/Zinger Platform.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/postman/Zinger Platform.postman_collection.json -------------------------------------------------------------------------------- /storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/test/application_system_test_case.rb -------------------------------------------------------------------------------- /test/channels/application_cable/connection_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/test/channels/application_cable/connection_test.rb -------------------------------------------------------------------------------- /test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/models/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/test/models/user_test.rb -------------------------------------------------------------------------------- /test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zinger-framework/zinger-core/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------