├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── README.md ├── package.json ├── packages ├── .DS_Store ├── app │ ├── .env.example │ ├── .expo-shared │ │ └── assets.json │ ├── .gitignore │ ├── App.tsx │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── metro.config.js │ ├── package.json │ ├── relay.config.js │ ├── src │ │ ├── Providers.tsx │ │ ├── components │ │ │ ├── Home │ │ │ │ ├── CreateStore.tsx │ │ │ │ ├── CreateStoreMutation.tsx │ │ │ │ ├── Home.tsx │ │ │ │ ├── HomeStoreListQuery.tsx │ │ │ │ ├── NewProduct.tsx │ │ │ │ ├── NewProductMutation.tsx │ │ │ │ └── Store.tsx │ │ │ ├── auth │ │ │ │ ├── SignIn.tsx │ │ │ │ ├── SignInUserLoginWithEmailMutation.tsx │ │ │ │ ├── SignUp.tsx │ │ │ │ └── SignUpUserRegisterWithEmailMutation.tsx │ │ │ ├── qrCode │ │ │ │ ├── QrCode.tsx │ │ │ │ ├── QrCodeMeQuery.tsx │ │ │ │ ├── ScanQrCode.tsx │ │ │ │ ├── ScanQrCodeStoreQuery.tsx │ │ │ │ └── ScanQrCodeUserPointsCreateOrUpdateMutation.tsx │ │ │ ├── settings │ │ │ │ ├── Settings.tsx │ │ │ │ └── SettingsMeQuery.tsx │ │ │ ├── storeDetails │ │ │ │ ├── Header.tsx │ │ │ │ ├── StoreDetails.tsx │ │ │ │ └── StoreDetailsQuery.tsx │ │ │ └── ui │ │ │ │ ├── Alert.tsx │ │ │ │ ├── Button.tsx │ │ │ │ ├── Product.tsx │ │ │ │ ├── RadioButton.tsx │ │ │ │ └── TextInput.tsx │ │ ├── core │ │ │ └── auth │ │ │ │ ├── AuthContext.tsx │ │ │ │ ├── security.ts │ │ │ │ ├── useAuth.tsx │ │ │ │ └── userType.ts │ │ ├── relay │ │ │ ├── Environment.ts │ │ │ └── fetchQuery.ts │ │ ├── routes.tsx │ │ └── types │ │ │ └── env.d.ts │ └── tsconfig.json ├── server │ ├── .env.example │ ├── .gitignore │ ├── package.json │ ├── schema │ │ └── schema.graphql │ ├── scripts │ │ ├── updateSchema.js │ │ └── updateSchema.ts │ ├── src │ │ ├── app.ts │ │ ├── auth.ts │ │ ├── config.ts │ │ ├── database │ │ │ └── database.ts │ │ ├── graphql │ │ │ ├── connectionDefinitions.ts │ │ │ ├── createLoader.ts │ │ │ ├── errorField.ts │ │ │ ├── index.ts │ │ │ ├── loaderRegister.ts │ │ │ ├── successField.ts │ │ │ ├── withConnectionCursor.ts │ │ │ └── withFilter.ts │ │ ├── index.ts │ │ ├── modules │ │ │ ├── node │ │ │ │ └── typeRegister.ts │ │ │ ├── product │ │ │ │ ├── ProductLoader.ts │ │ │ │ ├── ProductModel.ts │ │ │ │ ├── ProductType.ts │ │ │ │ └── mutations │ │ │ │ │ ├── ProductCreate.ts │ │ │ │ │ └── index.ts │ │ │ ├── store │ │ │ │ ├── StoreLoader.ts │ │ │ │ ├── StoreModel.ts │ │ │ │ ├── StoreType.ts │ │ │ │ └── mutations │ │ │ │ │ ├── StoreCreate.ts │ │ │ │ │ └── index.ts │ │ │ ├── user │ │ │ │ ├── UserLoader.ts │ │ │ │ ├── UserModel.ts │ │ │ │ ├── UserType.ts │ │ │ │ └── mutations │ │ │ │ │ ├── UserLoginWithEmailMutation.ts │ │ │ │ │ ├── UserRegisterWithEmailMutation.ts │ │ │ │ │ └── index.ts │ │ │ ├── userPoints │ │ │ │ ├── UserPointsLoader.ts │ │ │ │ ├── UserPointsModel.ts │ │ │ │ ├── UserPointsType.ts │ │ │ │ └── mutations │ │ │ │ │ ├── UserPointsCreateOrUpdate.ts │ │ │ │ │ └── index.ts │ │ │ └── userStore │ │ │ │ ├── UserStoreLoader.ts │ │ │ │ ├── UserStoreModel.ts │ │ │ │ ├── UserStoreType.ts │ │ │ │ └── mutations │ │ │ │ ├── UserStoreCreate.ts │ │ │ │ └── index.ts │ │ ├── schema │ │ │ ├── MutationType.ts │ │ │ ├── QueryType.ts │ │ │ └── schema.ts │ │ └── shared │ │ │ ├── index.ts │ │ │ ├── logger.config.ts │ │ │ └── server.config.ts │ └── tsconfig.json └── website │ ├── amora_emoji.png │ ├── index.html │ └── package.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/package.json -------------------------------------------------------------------------------- /packages/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/.DS_Store -------------------------------------------------------------------------------- /packages/app/.env.example: -------------------------------------------------------------------------------- 1 | API_URL=http://localhost:9001 -------------------------------------------------------------------------------- /packages/app/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/.expo-shared/assets.json -------------------------------------------------------------------------------- /packages/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/.gitignore -------------------------------------------------------------------------------- /packages/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/App.tsx -------------------------------------------------------------------------------- /packages/app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/app.json -------------------------------------------------------------------------------- /packages/app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /packages/app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/assets/favicon.png -------------------------------------------------------------------------------- /packages/app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/assets/icon.png -------------------------------------------------------------------------------- /packages/app/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/assets/splash.png -------------------------------------------------------------------------------- /packages/app/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/babel.config.js -------------------------------------------------------------------------------- /packages/app/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/metro.config.js -------------------------------------------------------------------------------- /packages/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/package.json -------------------------------------------------------------------------------- /packages/app/relay.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/relay.config.js -------------------------------------------------------------------------------- /packages/app/src/Providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/Providers.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/CreateStore.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/CreateStore.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/CreateStoreMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/CreateStoreMutation.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/Home.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/HomeStoreListQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/HomeStoreListQuery.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/NewProduct.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/NewProduct.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/NewProductMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/NewProductMutation.tsx -------------------------------------------------------------------------------- /packages/app/src/components/Home/Store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/Home/Store.tsx -------------------------------------------------------------------------------- /packages/app/src/components/auth/SignIn.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/auth/SignIn.tsx -------------------------------------------------------------------------------- /packages/app/src/components/auth/SignInUserLoginWithEmailMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/auth/SignInUserLoginWithEmailMutation.tsx -------------------------------------------------------------------------------- /packages/app/src/components/auth/SignUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/auth/SignUp.tsx -------------------------------------------------------------------------------- /packages/app/src/components/auth/SignUpUserRegisterWithEmailMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/auth/SignUpUserRegisterWithEmailMutation.tsx -------------------------------------------------------------------------------- /packages/app/src/components/qrCode/QrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/qrCode/QrCode.tsx -------------------------------------------------------------------------------- /packages/app/src/components/qrCode/QrCodeMeQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/qrCode/QrCodeMeQuery.tsx -------------------------------------------------------------------------------- /packages/app/src/components/qrCode/ScanQrCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/qrCode/ScanQrCode.tsx -------------------------------------------------------------------------------- /packages/app/src/components/qrCode/ScanQrCodeStoreQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/qrCode/ScanQrCodeStoreQuery.tsx -------------------------------------------------------------------------------- /packages/app/src/components/qrCode/ScanQrCodeUserPointsCreateOrUpdateMutation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/qrCode/ScanQrCodeUserPointsCreateOrUpdateMutation.tsx -------------------------------------------------------------------------------- /packages/app/src/components/settings/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/settings/Settings.tsx -------------------------------------------------------------------------------- /packages/app/src/components/settings/SettingsMeQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/settings/SettingsMeQuery.tsx -------------------------------------------------------------------------------- /packages/app/src/components/storeDetails/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/storeDetails/Header.tsx -------------------------------------------------------------------------------- /packages/app/src/components/storeDetails/StoreDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/storeDetails/StoreDetails.tsx -------------------------------------------------------------------------------- /packages/app/src/components/storeDetails/StoreDetailsQuery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/storeDetails/StoreDetailsQuery.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ui/Alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/ui/Alert.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ui/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/ui/Button.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ui/Product.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/ui/Product.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ui/RadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/ui/RadioButton.tsx -------------------------------------------------------------------------------- /packages/app/src/components/ui/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/components/ui/TextInput.tsx -------------------------------------------------------------------------------- /packages/app/src/core/auth/AuthContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/core/auth/AuthContext.tsx -------------------------------------------------------------------------------- /packages/app/src/core/auth/security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/core/auth/security.ts -------------------------------------------------------------------------------- /packages/app/src/core/auth/useAuth.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/core/auth/useAuth.tsx -------------------------------------------------------------------------------- /packages/app/src/core/auth/userType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/core/auth/userType.ts -------------------------------------------------------------------------------- /packages/app/src/relay/Environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/relay/Environment.ts -------------------------------------------------------------------------------- /packages/app/src/relay/fetchQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/relay/fetchQuery.ts -------------------------------------------------------------------------------- /packages/app/src/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/src/routes.tsx -------------------------------------------------------------------------------- /packages/app/src/types/env.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@env' { 2 | export const API_URL: string; 3 | } -------------------------------------------------------------------------------- /packages/app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/app/tsconfig.json -------------------------------------------------------------------------------- /packages/server/.env.example: -------------------------------------------------------------------------------- 1 | PORT=9001 2 | NODE_ENV=development 3 | 4 | MONGO_URI=mongodb://localhost/rbaf 5 | JWT_SECRET=jwt_secret -------------------------------------------------------------------------------- /packages/server/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | lib/ 3 | dist/ -------------------------------------------------------------------------------- /packages/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/package.json -------------------------------------------------------------------------------- /packages/server/schema/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/schema/schema.graphql -------------------------------------------------------------------------------- /packages/server/scripts/updateSchema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/scripts/updateSchema.js -------------------------------------------------------------------------------- /packages/server/scripts/updateSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/scripts/updateSchema.ts -------------------------------------------------------------------------------- /packages/server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/app.ts -------------------------------------------------------------------------------- /packages/server/src/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/auth.ts -------------------------------------------------------------------------------- /packages/server/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/config.ts -------------------------------------------------------------------------------- /packages/server/src/database/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/database/database.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/connectionDefinitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/connectionDefinitions.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/createLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/createLoader.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/errorField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/errorField.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/index.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/loaderRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/loaderRegister.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/successField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/successField.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/withConnectionCursor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/withConnectionCursor.ts -------------------------------------------------------------------------------- /packages/server/src/graphql/withFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/graphql/withFilter.ts -------------------------------------------------------------------------------- /packages/server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/index.ts -------------------------------------------------------------------------------- /packages/server/src/modules/node/typeRegister.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/node/typeRegister.ts -------------------------------------------------------------------------------- /packages/server/src/modules/product/ProductLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/product/ProductLoader.ts -------------------------------------------------------------------------------- /packages/server/src/modules/product/ProductModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/product/ProductModel.ts -------------------------------------------------------------------------------- /packages/server/src/modules/product/ProductType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/product/ProductType.ts -------------------------------------------------------------------------------- /packages/server/src/modules/product/mutations/ProductCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/product/mutations/ProductCreate.ts -------------------------------------------------------------------------------- /packages/server/src/modules/product/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/product/mutations/index.ts -------------------------------------------------------------------------------- /packages/server/src/modules/store/StoreLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/store/StoreLoader.ts -------------------------------------------------------------------------------- /packages/server/src/modules/store/StoreModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/store/StoreModel.ts -------------------------------------------------------------------------------- /packages/server/src/modules/store/StoreType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/store/StoreType.ts -------------------------------------------------------------------------------- /packages/server/src/modules/store/mutations/StoreCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/store/mutations/StoreCreate.ts -------------------------------------------------------------------------------- /packages/server/src/modules/store/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/store/mutations/index.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/UserLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/UserLoader.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/UserModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/UserModel.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/UserType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/UserType.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/mutations/UserLoginWithEmailMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/mutations/UserLoginWithEmailMutation.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/mutations/UserRegisterWithEmailMutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/mutations/UserRegisterWithEmailMutation.ts -------------------------------------------------------------------------------- /packages/server/src/modules/user/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/user/mutations/index.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userPoints/UserPointsLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userPoints/UserPointsLoader.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userPoints/UserPointsModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userPoints/UserPointsModel.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userPoints/UserPointsType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userPoints/UserPointsType.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userPoints/mutations/UserPointsCreateOrUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userPoints/mutations/UserPointsCreateOrUpdate.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userPoints/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userPoints/mutations/index.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userStore/UserStoreLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userStore/UserStoreLoader.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userStore/UserStoreModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userStore/UserStoreModel.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userStore/UserStoreType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userStore/UserStoreType.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userStore/mutations/UserStoreCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userStore/mutations/UserStoreCreate.ts -------------------------------------------------------------------------------- /packages/server/src/modules/userStore/mutations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/modules/userStore/mutations/index.ts -------------------------------------------------------------------------------- /packages/server/src/schema/MutationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/schema/MutationType.ts -------------------------------------------------------------------------------- /packages/server/src/schema/QueryType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/schema/QueryType.ts -------------------------------------------------------------------------------- /packages/server/src/schema/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/schema/schema.ts -------------------------------------------------------------------------------- /packages/server/src/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/shared/index.ts -------------------------------------------------------------------------------- /packages/server/src/shared/logger.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/shared/logger.config.ts -------------------------------------------------------------------------------- /packages/server/src/shared/server.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/src/shared/server.config.ts -------------------------------------------------------------------------------- /packages/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/server/tsconfig.json -------------------------------------------------------------------------------- /packages/website/amora_emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/website/amora_emoji.png -------------------------------------------------------------------------------- /packages/website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/website/index.html -------------------------------------------------------------------------------- /packages/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/packages/website/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akinncar/amora/HEAD/yarn.lock --------------------------------------------------------------------------------