├── .claude └── settings.local.json ├── .editorconfig ├── .firebaserc ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc ├── .mcp.json ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── CLAUDE.md ├── README.md ├── apps ├── my-barbershop-e2e │ ├── eslint.config.cjs │ ├── playwright.config.ts │ ├── project.json │ ├── src │ │ └── example.spec.ts │ └── tsconfig.json └── my-barbershop │ ├── eslint.config.cjs │ ├── jest.config.ts │ ├── ngsw-config.json │ ├── project.json │ ├── public │ ├── barber-icon.svg │ ├── barber-symbol.svg │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ └── manifest.webmanifest │ ├── src │ ├── app │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── core │ │ │ ├── guards │ │ │ │ ├── auth │ │ │ │ │ └── auth.guard.ts │ │ │ │ └── is-logged-in │ │ │ │ │ ├── is-logged-in.guard.spec.ts │ │ │ │ │ └── is-logged-in.guard.ts │ │ │ ├── layout │ │ │ │ ├── auth │ │ │ │ │ ├── auth.layout.html │ │ │ │ │ ├── auth.layout.scss │ │ │ │ │ ├── auth.layout.spec.ts │ │ │ │ │ └── auth.layout.ts │ │ │ │ └── shell │ │ │ │ │ ├── shell.layout.html │ │ │ │ │ ├── shell.layout.scss │ │ │ │ │ ├── shell.layout.spec.ts │ │ │ │ │ └── shell.layout.ts │ │ │ └── pages │ │ │ │ └── reset-password │ │ │ │ ├── reset-password.page.html │ │ │ │ ├── reset-password.page.scss │ │ │ │ ├── reset-password.page.spec.ts │ │ │ │ └── reset-password.page.ts │ │ ├── domain │ │ │ ├── auth │ │ │ │ ├── apis │ │ │ │ │ └── auth.api.ts │ │ │ │ ├── auth.routes.ts │ │ │ │ ├── constants │ │ │ │ │ └── user.constant.ts │ │ │ │ ├── enums │ │ │ │ │ └── user-status.enum.ts │ │ │ │ ├── interfaces │ │ │ │ │ └── user.interface.ts │ │ │ │ ├── pages │ │ │ │ │ ├── forgot-password │ │ │ │ │ │ ├── forgot-password.page.html │ │ │ │ │ │ ├── forgot-password.page.scss │ │ │ │ │ │ ├── forgot-password.page.spec.ts │ │ │ │ │ │ └── forgot-password.page.ts │ │ │ │ │ └── login │ │ │ │ │ │ ├── login.page.html │ │ │ │ │ │ ├── login.page.scss │ │ │ │ │ │ ├── login.page.spec.ts │ │ │ │ │ │ └── login.page.ts │ │ │ │ └── services │ │ │ │ │ └── auth.service.ts │ │ │ ├── dashboard │ │ │ │ ├── components │ │ │ │ │ └── share-modal │ │ │ │ │ │ └── share-modal.component.ts │ │ │ │ ├── constants │ │ │ │ │ └── storefront-form.constant.ts │ │ │ │ ├── dashboard.routes.ts │ │ │ │ └── pages │ │ │ │ │ └── dashboard │ │ │ │ │ ├── dashboard.page.html │ │ │ │ │ ├── dashboard.page.scss │ │ │ │ │ ├── dashboard.page.spec.ts │ │ │ │ │ └── dashboard.page.ts │ │ │ ├── storefront │ │ │ │ ├── pages │ │ │ │ │ └── storefront │ │ │ │ │ │ ├── storefront.page.html │ │ │ │ │ │ ├── storefront.page.scss │ │ │ │ │ │ ├── storefront.page.spec.ts │ │ │ │ │ │ └── storefront.page.ts │ │ │ │ └── storefront.routes.ts │ │ │ └── subscription │ │ │ │ ├── apis │ │ │ │ ├── price.api.ts │ │ │ │ ├── products.api.ts │ │ │ │ └── user-company.api.ts │ │ │ │ ├── components │ │ │ │ ├── admin-details │ │ │ │ │ ├── admin-details.component.html │ │ │ │ │ ├── admin-details.component.scss │ │ │ │ │ ├── admin-details.component.spec.ts │ │ │ │ │ └── admin-details.component.ts │ │ │ │ ├── company-details │ │ │ │ │ ├── company-details.component.html │ │ │ │ │ ├── company-details.component.scss │ │ │ │ │ ├── company-details.component.spec.ts │ │ │ │ │ └── company-details.component.ts │ │ │ │ └── select-plan │ │ │ │ │ ├── select-plan.component.html │ │ │ │ │ ├── select-plan.component.scss │ │ │ │ │ ├── select-plan.component.spec.ts │ │ │ │ │ └── select-plan.component.ts │ │ │ │ ├── constants │ │ │ │ ├── company-form-config.constant.ts │ │ │ │ └── ufs.constant.ts │ │ │ │ ├── enums │ │ │ │ ├── plans.enum.ts │ │ │ │ └── subscription-step.enum.ts │ │ │ │ ├── interfaces │ │ │ │ ├── price.interface.ts │ │ │ │ ├── product.interface.ts │ │ │ │ └── user-company.interface.ts │ │ │ │ ├── pages │ │ │ │ └── subscription │ │ │ │ │ ├── subscription.page.html │ │ │ │ │ ├── subscription.page.scss │ │ │ │ │ ├── subscription.page.spec.ts │ │ │ │ │ └── subscription.page.ts │ │ │ │ ├── services │ │ │ │ └── subscription.service.ts │ │ │ │ └── subscription.routes.ts │ │ ├── shared │ │ │ ├── apis │ │ │ │ ├── base.api.ts │ │ │ │ ├── storage.api.ts │ │ │ │ └── storefront.api.ts │ │ │ ├── enums │ │ │ │ └── bucket-name.enum.ts │ │ │ ├── functions │ │ │ │ └── inject-supabase.function.ts │ │ │ ├── interfaces │ │ │ │ ├── base.interface.ts │ │ │ │ ├── company.interface.ts │ │ │ │ └── storefront.interface.ts │ │ │ ├── services │ │ │ │ ├── company │ │ │ │ │ └── company.service.ts │ │ │ │ ├── loading │ │ │ │ │ ├── loading.service.spec.ts │ │ │ │ │ └── loading.service.ts │ │ │ │ ├── pwa-update │ │ │ │ │ └── pwa-update.service.ts │ │ │ │ ├── supabase │ │ │ │ │ ├── supabase.service.spec.ts │ │ │ │ │ └── supabase.service.ts │ │ │ │ └── theme │ │ │ │ │ ├── theme.service.spec.ts │ │ │ │ │ └── theme.service.ts │ │ │ └── utils │ │ │ │ └── date.util.ts │ │ └── widget │ │ │ ├── components │ │ │ └── dynamic-form │ │ │ │ ├── dynamic-field.enum.ts │ │ │ │ ├── dynamic-form-config.interface.ts │ │ │ │ ├── dynamic-form.component.html │ │ │ │ ├── dynamic-form.component.scss │ │ │ │ ├── dynamic-form.component.spec.ts │ │ │ │ ├── dynamic-form.component.ts │ │ │ │ └── form-errors.ts │ │ │ ├── directives │ │ │ ├── auto-focus │ │ │ │ ├── auto-focus.directive.spec.ts │ │ │ │ └── auto-focus.directive.ts │ │ │ ├── form-storage │ │ │ │ ├── form-storage.directive.spec.ts │ │ │ │ └── form-storage.directive.ts │ │ │ └── icon │ │ │ │ └── icon.directive.ts │ │ │ └── pipes │ │ │ └── download-storage │ │ │ └── download-storage.pipe.ts │ ├── index.html │ ├── main.ts │ ├── styles.scss │ ├── styles │ │ ├── _medias.scss │ │ ├── dark.less │ │ ├── default.less │ │ └── themes │ │ │ ├── base.less │ │ │ ├── dark.less │ │ │ ├── default.less │ │ │ └── mixin.less │ └── test-setup.ts │ ├── tsconfig.app.json │ ├── tsconfig.editor.json │ ├── tsconfig.json │ └── tsconfig.spec.json ├── eslint.config.cjs ├── firebase.json ├── jest.config.ts ├── jest.preset.js ├── nx.json ├── package.json ├── scripts └── generate-pwa-icons.js ├── supabase ├── .gitignore ├── config.toml ├── functions │ ├── _shared │ │ └── cors.ts │ ├── create_subscription │ │ ├── .npmrc │ │ ├── deno.json │ │ └── index.ts │ ├── instructions.md │ └── stripe-webhook │ │ └── index.ts └── seed.sql └── tsconfig.base.json /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | -------------------------------------------------------------------------------- /.lintstagedrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.lintstagedrc -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.mcp.json -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/README.md -------------------------------------------------------------------------------- /apps/my-barbershop-e2e/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop-e2e/eslint.config.cjs -------------------------------------------------------------------------------- /apps/my-barbershop-e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop-e2e/playwright.config.ts -------------------------------------------------------------------------------- /apps/my-barbershop-e2e/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop-e2e/project.json -------------------------------------------------------------------------------- /apps/my-barbershop-e2e/src/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop-e2e/src/example.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop-e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop-e2e/tsconfig.json -------------------------------------------------------------------------------- /apps/my-barbershop/eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/eslint.config.cjs -------------------------------------------------------------------------------- /apps/my-barbershop/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/jest.config.ts -------------------------------------------------------------------------------- /apps/my-barbershop/ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/ngsw-config.json -------------------------------------------------------------------------------- /apps/my-barbershop/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/project.json -------------------------------------------------------------------------------- /apps/my-barbershop/public/barber-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/barber-icon.svg -------------------------------------------------------------------------------- /apps/my-barbershop/public/barber-symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/barber-symbol.svg -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-128x128.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-144x144.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-152x152.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-192x192.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-384x384.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-512x512.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-72x72.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/icons/icon-96x96.png -------------------------------------------------------------------------------- /apps/my-barbershop/public/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/public/manifest.webmanifest -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/app.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/app.config.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/app.routes.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/guards/auth/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/guards/auth/auth.guard.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/guards/is-logged-in/is-logged-in.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/guards/is-logged-in/is-logged-in.guard.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/guards/is-logged-in/is-logged-in.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/guards/is-logged-in/is-logged-in.guard.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/auth/auth.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/auth/auth.layout.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/auth/auth.layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/auth/auth.layout.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/auth/auth.layout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/auth/auth.layout.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/auth/auth.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/auth/auth.layout.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/shell/shell.layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/shell/shell.layout.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/shell/shell.layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/shell/shell.layout.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/shell/shell.layout.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/shell/shell.layout.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/layout/shell/shell.layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/layout/shell/shell.layout.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/core/pages/reset-password/reset-password.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/apis/auth.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/apis/auth.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/auth.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/auth.routes.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/constants/user.constant.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/enums/user-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/enums/user-status.enum.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/interfaces/user.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/interfaces/user.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/forgot-password/forgot-password.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/login/login.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/login/login.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/login/login.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/login/login.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/login/login.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/pages/login/login.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/pages/login/login.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/auth/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/auth/services/auth.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/components/share-modal/share-modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/components/share-modal/share-modal.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/constants/storefront-form.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/constants/storefront-form.constant.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/dashboard.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/dashboard.routes.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/dashboard/pages/dashboard/dashboard.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/storefront/pages/storefront/storefront.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/storefront/storefront.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/storefront/storefront.routes.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/apis/price.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/apis/price.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/apis/products.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/apis/products.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/apis/user-company.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/apis/user-company.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/admin-details/admin-details.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/company-details/company-details.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/components/select-plan/select-plan.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/constants/company-form-config.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/constants/company-form-config.constant.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/constants/ufs.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/constants/ufs.constant.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/enums/plans.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/enums/plans.enum.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/enums/subscription-step.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/enums/subscription-step.enum.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/interfaces/price.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/interfaces/price.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/interfaces/product.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/interfaces/product.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/interfaces/user-company.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/interfaces/user-company.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/pages/subscription/subscription.page.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/services/subscription.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/services/subscription.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/domain/subscription/subscription.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/domain/subscription/subscription.routes.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/apis/base.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/apis/base.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/apis/storage.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/apis/storage.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/apis/storefront.api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/apis/storefront.api.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/enums/bucket-name.enum.ts: -------------------------------------------------------------------------------- 1 | export enum eBucketName { 2 | AVATARS = 'avatars', 3 | } 4 | -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/functions/inject-supabase.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/functions/inject-supabase.function.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/interfaces/base.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/interfaces/base.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/interfaces/company.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/interfaces/company.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/interfaces/storefront.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/interfaces/storefront.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/company/company.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/company/company.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/loading/loading.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/loading/loading.service.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/loading/loading.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/loading/loading.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/pwa-update/pwa-update.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/pwa-update/pwa-update.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/supabase/supabase.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/supabase/supabase.service.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/supabase/supabase.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/supabase/supabase.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/theme/theme.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/theme/theme.service.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/services/theme/theme.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/services/theme/theme.service.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/shared/utils/date.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/shared/utils/date.util.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-field.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-field.enum.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form-config.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form-config.interface.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/dynamic-form.component.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/components/dynamic-form/form-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/components/dynamic-form/form-errors.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/directives/auto-focus/auto-focus.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/directives/auto-focus/auto-focus.directive.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/directives/auto-focus/auto-focus.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/directives/auto-focus/auto-focus.directive.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/directives/form-storage/form-storage.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/directives/form-storage/form-storage.directive.spec.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/directives/form-storage/form-storage.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/directives/form-storage/form-storage.directive.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/directives/icon/icon.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/directives/icon/icon.directive.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/app/widget/pipes/download-storage/download-storage.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/app/widget/pipes/download-storage/download-storage.pipe.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/index.html -------------------------------------------------------------------------------- /apps/my-barbershop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/main.ts -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/_medias.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/_medias.scss -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/dark.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/default.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/themes/base.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/themes/base.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/themes/dark.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/themes/dark.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/themes/default.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/themes/default.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/styles/themes/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/styles/themes/mixin.less -------------------------------------------------------------------------------- /apps/my-barbershop/src/test-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/src/test-setup.ts -------------------------------------------------------------------------------- /apps/my-barbershop/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/tsconfig.app.json -------------------------------------------------------------------------------- /apps/my-barbershop/tsconfig.editor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/tsconfig.editor.json -------------------------------------------------------------------------------- /apps/my-barbershop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/tsconfig.json -------------------------------------------------------------------------------- /apps/my-barbershop/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/apps/my-barbershop/tsconfig.spec.json -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/firebase.json -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/jest.config.ts -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/jest.preset.js -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-pwa-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/scripts/generate-pwa-icons.js -------------------------------------------------------------------------------- /supabase/.gitignore: -------------------------------------------------------------------------------- 1 | # Supabase 2 | .branches 3 | .temp 4 | .env 5 | -------------------------------------------------------------------------------- /supabase/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/config.toml -------------------------------------------------------------------------------- /supabase/functions/_shared/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/functions/_shared/cors.ts -------------------------------------------------------------------------------- /supabase/functions/create_subscription/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/functions/create_subscription/.npmrc -------------------------------------------------------------------------------- /supabase/functions/create_subscription/deno.json: -------------------------------------------------------------------------------- 1 | { 2 | "imports": {} 3 | } 4 | -------------------------------------------------------------------------------- /supabase/functions/create_subscription/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/functions/create_subscription/index.ts -------------------------------------------------------------------------------- /supabase/functions/instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/functions/instructions.md -------------------------------------------------------------------------------- /supabase/functions/stripe-webhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/supabase/functions/stripe-webhook/index.ts -------------------------------------------------------------------------------- /supabase/seed.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srizzon/my-barbershop/HEAD/tsconfig.base.json --------------------------------------------------------------------------------