├── .env.secret ├── .gitattributes ├── .gitignore ├── .gitsecret ├── keys │ ├── mapping.cfg │ ├── pubring.gpg │ ├── random_seed │ ├── secring.gpg │ └── trustdb.gpg └── paths │ └── mapping.cfg ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── package.json ├── src ├── client │ ├── api │ │ ├── index.ts │ │ ├── sessions.ts │ │ ├── shopify.ts │ │ └── users.ts │ ├── client.tsx │ ├── components │ │ ├── box.tsx │ │ ├── nav.tsx │ │ └── router.tsx │ ├── css │ │ ├── all.styl │ │ ├── box.styl │ │ ├── error.styl │ │ ├── theme.styl │ │ ├── utilities.styl │ │ └── variables.styl │ ├── index.html │ ├── pages │ │ ├── account │ │ │ ├── dialog.tsx │ │ │ └── index.tsx │ │ ├── auth │ │ │ ├── forgot_password.tsx │ │ │ ├── index.tsx │ │ │ └── reset_password.tsx │ │ ├── error │ │ │ └── index.tsx │ │ ├── home │ │ │ ├── index.tsx │ │ │ └── new_order_dialog.tsx │ │ └── signup │ │ │ ├── finalize.tsx │ │ │ ├── index.tsx │ │ │ └── integrate.tsx │ └── stores │ │ ├── auth.ts │ │ ├── dashboard.ts │ │ └── index.ts ├── server │ ├── database │ │ ├── index.ts │ │ └── users.ts │ ├── routes │ │ ├── index.ts │ │ ├── sessions.ts │ │ ├── shopify.ts │ │ ├── users.ts │ │ └── webhooks.ts │ └── server.ts ├── shared │ ├── constants.ts │ ├── errors.ts │ ├── paths.ts │ └── server.constants.ts └── typings │ ├── app │ └── index.d.ts │ ├── is-in-browser │ └── index.d.ts │ ├── redirect-https │ └── index.d.ts │ └── string-capitalize │ └── index.d.ts ├── tsconfig.json └── yarn.lock /.env.secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.env.secret -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitsecret/keys/mapping.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitsecret/keys/pubring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.gitsecret/keys/pubring.gpg -------------------------------------------------------------------------------- /.gitsecret/keys/random_seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.gitsecret/keys/random_seed -------------------------------------------------------------------------------- /.gitsecret/keys/secring.gpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitsecret/keys/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.gitsecret/keys/trustdb.gpg -------------------------------------------------------------------------------- /.gitsecret/paths/mapping.cfg: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/package.json -------------------------------------------------------------------------------- /src/client/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/api/index.ts -------------------------------------------------------------------------------- /src/client/api/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/api/sessions.ts -------------------------------------------------------------------------------- /src/client/api/shopify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/api/shopify.ts -------------------------------------------------------------------------------- /src/client/api/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/api/users.ts -------------------------------------------------------------------------------- /src/client/client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/client.tsx -------------------------------------------------------------------------------- /src/client/components/box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/components/box.tsx -------------------------------------------------------------------------------- /src/client/components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/components/nav.tsx -------------------------------------------------------------------------------- /src/client/components/router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/components/router.tsx -------------------------------------------------------------------------------- /src/client/css/all.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/all.styl -------------------------------------------------------------------------------- /src/client/css/box.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/box.styl -------------------------------------------------------------------------------- /src/client/css/error.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/error.styl -------------------------------------------------------------------------------- /src/client/css/theme.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/theme.styl -------------------------------------------------------------------------------- /src/client/css/utilities.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/utilities.styl -------------------------------------------------------------------------------- /src/client/css/variables.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/css/variables.styl -------------------------------------------------------------------------------- /src/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/index.html -------------------------------------------------------------------------------- /src/client/pages/account/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/account/dialog.tsx -------------------------------------------------------------------------------- /src/client/pages/account/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/account/index.tsx -------------------------------------------------------------------------------- /src/client/pages/auth/forgot_password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/auth/forgot_password.tsx -------------------------------------------------------------------------------- /src/client/pages/auth/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/auth/index.tsx -------------------------------------------------------------------------------- /src/client/pages/auth/reset_password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/auth/reset_password.tsx -------------------------------------------------------------------------------- /src/client/pages/error/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/error/index.tsx -------------------------------------------------------------------------------- /src/client/pages/home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/home/index.tsx -------------------------------------------------------------------------------- /src/client/pages/home/new_order_dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/home/new_order_dialog.tsx -------------------------------------------------------------------------------- /src/client/pages/signup/finalize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/signup/finalize.tsx -------------------------------------------------------------------------------- /src/client/pages/signup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/signup/index.tsx -------------------------------------------------------------------------------- /src/client/pages/signup/integrate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/pages/signup/integrate.tsx -------------------------------------------------------------------------------- /src/client/stores/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/stores/auth.ts -------------------------------------------------------------------------------- /src/client/stores/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/stores/dashboard.ts -------------------------------------------------------------------------------- /src/client/stores/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/client/stores/index.ts -------------------------------------------------------------------------------- /src/server/database/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./users"; 2 | -------------------------------------------------------------------------------- /src/server/database/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/database/users.ts -------------------------------------------------------------------------------- /src/server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/routes/index.ts -------------------------------------------------------------------------------- /src/server/routes/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/routes/sessions.ts -------------------------------------------------------------------------------- /src/server/routes/shopify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/routes/shopify.ts -------------------------------------------------------------------------------- /src/server/routes/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/routes/users.ts -------------------------------------------------------------------------------- /src/server/routes/webhooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/routes/webhooks.ts -------------------------------------------------------------------------------- /src/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/server/server.ts -------------------------------------------------------------------------------- /src/shared/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/shared/constants.ts -------------------------------------------------------------------------------- /src/shared/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/shared/errors.ts -------------------------------------------------------------------------------- /src/shared/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/shared/paths.ts -------------------------------------------------------------------------------- /src/shared/server.constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/shared/server.constants.ts -------------------------------------------------------------------------------- /src/typings/app/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/typings/app/index.d.ts -------------------------------------------------------------------------------- /src/typings/is-in-browser/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/typings/is-in-browser/index.d.ts -------------------------------------------------------------------------------- /src/typings/redirect-https/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "redirect-https"; -------------------------------------------------------------------------------- /src/typings/string-capitalize/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/src/typings/string-capitalize/index.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nozzlegear/Gearworks/HEAD/yarn.lock --------------------------------------------------------------------------------