├── .vscode └── settings.json ├── LICENSE ├── README.md ├── frontend ├── .env.example ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.js ├── README.md ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── biprodas-roy.jpg │ ├── biprodas.jpg │ ├── favicon.jpg │ ├── logo.jpg │ ├── next.svg │ └── vercel.svg ├── src │ ├── app │ │ ├── about │ │ │ └── page.tsx │ │ ├── contact │ │ │ └── page.tsx │ │ ├── error.tsx │ │ ├── globals.css │ │ ├── gre │ │ │ └── page.tsx │ │ ├── icon.jpg │ │ ├── ielts │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── materials │ │ │ └── page.tsx │ │ ├── not-found.tsx │ │ ├── page.tsx │ │ ├── schools │ │ │ └── page.tsx │ │ └── vocabulary │ │ │ └── page.tsx │ ├── components │ │ ├── layout │ │ │ ├── footer │ │ │ │ └── index.tsx │ │ │ └── header │ │ │ │ ├── banner.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── navbar.tsx │ │ ├── shared │ │ │ ├── theme-provider.tsx │ │ │ └── theme-toogle.tsx │ │ ├── ui │ │ │ └── index.tsx │ │ └── working.tsx │ ├── config │ │ └── site.ts │ ├── hooks │ │ └── use-scroll.ts │ ├── lib │ │ └── utils.ts │ └── types │ │ ├── index.ts │ │ └── next-auth.d.ts ├── tailwind.config.ts └── tsconfig.json └── server ├── .env.example ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── docker-compose.yml ├── nest-cli.json ├── package-lock.json ├── package.json ├── src ├── app │ ├── app.module.ts │ ├── constants │ │ ├── app.constant.ts │ │ └── app.enum.constant.ts │ ├── controllers │ │ ├── app.controller.spec.ts │ │ └── app.controller.ts │ └── services │ │ └── app.service.ts ├── common │ ├── common.module.ts │ ├── constants │ │ ├── constraint-errors.ts │ │ ├── http-error-type.ts │ │ └── index.ts │ ├── database │ │ ├── constants │ │ │ ├── database.constant.ts │ │ │ └── database.function.constant.ts │ │ ├── database.options.module.ts │ │ ├── interfaces │ │ │ └── database.options-service.interface.ts │ │ └── services │ │ │ └── database.options.service.ts │ ├── decorators │ │ └── http.decorator.ts │ ├── enums │ │ ├── environment.enum.ts │ │ └── error-type.enum.ts │ ├── helper │ │ ├── constants │ │ │ ├── helper.enum.constant.ts │ │ │ └── helper.function.ts │ │ ├── helper.module.ts │ │ ├── interfaces │ │ │ ├── helper.date-service.interface.ts │ │ │ └── helper.interface.ts │ │ └── services │ │ │ └── helper.date.service.ts │ ├── interfaces │ │ └── IFile.ts │ └── pipes │ │ └── parse-object-id.pipe.ts ├── configs │ ├── app.config.ts │ ├── auth.config.ts │ ├── aws.config.ts │ ├── config-validation.schema.ts │ ├── config.type.ts │ ├── database.config.ts │ └── index.ts ├── database │ ├── database.module.ts │ └── database.providers.ts ├── job │ ├── jobs.module.ts │ └── router │ │ └── jobs.router.module.ts ├── main.ts ├── modules │ ├── admin │ │ └── admin.module.ts │ ├── dictionary │ │ ├── controllers │ │ │ └── dictionary.controller.ts │ │ ├── dictionary.http │ │ ├── dictionary.module.ts │ │ ├── dtos │ │ │ ├── create-dictionary.dto.ts │ │ │ ├── dictionary.dto.ts │ │ │ ├── filter-dictionary.dto.ts │ │ │ └── update-dictionary.dto.ts │ │ ├── schemas │ │ │ └── dictionary.schema.ts │ │ └── services │ │ │ └── dictionary.service.ts │ ├── faq │ │ └── faq.module.ts │ ├── iam │ │ └── iam.module.ts │ ├── report │ │ └── report.module.ts │ ├── school │ │ └── school.module.ts │ ├── task │ │ ├── task.controller.ts │ │ ├── task.module.ts │ │ ├── task.schema.ts │ │ └── task.service.ts │ └── word │ │ ├── controllers │ │ └── word.controller.ts │ │ ├── dtos │ │ ├── create-word.dto.ts │ │ ├── filter-word.dto.ts │ │ ├── index.ts │ │ ├── update-word.dto.ts │ │ └── word.dto.ts │ │ ├── schemas │ │ └── word.schema.ts │ │ ├── services │ │ └── word.service.ts │ │ ├── word.http │ │ └── word.module.ts ├── router │ ├── router.module.ts │ └── routes │ │ ├── routes.admin.module.ts │ │ ├── routes.auth.module.ts │ │ ├── routes.public.module.ts │ │ └── routes.user.module.ts └── shared │ └── shared.module.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.build.json └── tsconfig.json /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wordbook -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- 1 | PORT=3100 2 | API_URL=http://localhost:3900 -------------------------------------------------------------------------------- /frontend/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | -------------------------------------------------------------------------------- /frontend/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/.prettierrc.js -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/next.config.js -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/biprodas-roy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/biprodas-roy.jpg -------------------------------------------------------------------------------- /frontend/public/biprodas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/biprodas.jpg -------------------------------------------------------------------------------- /frontend/public/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/favicon.jpg -------------------------------------------------------------------------------- /frontend/public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/logo.jpg -------------------------------------------------------------------------------- /frontend/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/next.svg -------------------------------------------------------------------------------- /frontend/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/public/vercel.svg -------------------------------------------------------------------------------- /frontend/src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/about/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/contact/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/contact/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/error.tsx -------------------------------------------------------------------------------- /frontend/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/globals.css -------------------------------------------------------------------------------- /frontend/src/app/gre/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/gre/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/icon.jpg -------------------------------------------------------------------------------- /frontend/src/app/ielts/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/ielts/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/layout.tsx -------------------------------------------------------------------------------- /frontend/src/app/materials/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/materials/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/not-found.tsx -------------------------------------------------------------------------------- /frontend/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/schools/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/schools/page.tsx -------------------------------------------------------------------------------- /frontend/src/app/vocabulary/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/app/vocabulary/page.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/layout/footer/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/header/banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/layout/header/banner.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/layout/header/index.tsx -------------------------------------------------------------------------------- /frontend/src/components/layout/header/navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/layout/header/navbar.tsx -------------------------------------------------------------------------------- /frontend/src/components/shared/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/shared/theme-provider.tsx -------------------------------------------------------------------------------- /frontend/src/components/shared/theme-toogle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/shared/theme-toogle.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/components/working.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/components/working.tsx -------------------------------------------------------------------------------- /frontend/src/config/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/config/site.ts -------------------------------------------------------------------------------- /frontend/src/hooks/use-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/hooks/use-scroll.ts -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/types/index.ts -------------------------------------------------------------------------------- /frontend/src/types/next-auth.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/src/types/next-auth.d.ts -------------------------------------------------------------------------------- /frontend/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/tailwind.config.ts -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /server/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/.env.example -------------------------------------------------------------------------------- /server/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/.eslintrc.js -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/.prettierrc -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/README.md -------------------------------------------------------------------------------- /server/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/docker-compose.yml -------------------------------------------------------------------------------- /server/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/nest-cli.json -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/app/app.module.ts -------------------------------------------------------------------------------- /server/src/app/constants/app.constant.ts: -------------------------------------------------------------------------------- 1 | export const APP_LANGUAGE = 'en'; 2 | -------------------------------------------------------------------------------- /server/src/app/constants/app.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/app/constants/app.enum.constant.ts -------------------------------------------------------------------------------- /server/src/app/controllers/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/app/controllers/app.controller.spec.ts -------------------------------------------------------------------------------- /server/src/app/controllers/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/app/controllers/app.controller.ts -------------------------------------------------------------------------------- /server/src/app/services/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/app/services/app.service.ts -------------------------------------------------------------------------------- /server/src/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/common.module.ts -------------------------------------------------------------------------------- /server/src/common/constants/constraint-errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/constants/constraint-errors.ts -------------------------------------------------------------------------------- /server/src/common/constants/http-error-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/constants/http-error-type.ts -------------------------------------------------------------------------------- /server/src/common/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/constants/index.ts -------------------------------------------------------------------------------- /server/src/common/database/constants/database.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/database/constants/database.constant.ts -------------------------------------------------------------------------------- /server/src/common/database/constants/database.function.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/database/constants/database.function.constant.ts -------------------------------------------------------------------------------- /server/src/common/database/database.options.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/database/database.options.module.ts -------------------------------------------------------------------------------- /server/src/common/database/interfaces/database.options-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/database/interfaces/database.options-service.interface.ts -------------------------------------------------------------------------------- /server/src/common/database/services/database.options.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/database/services/database.options.service.ts -------------------------------------------------------------------------------- /server/src/common/decorators/http.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/decorators/http.decorator.ts -------------------------------------------------------------------------------- /server/src/common/enums/environment.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/enums/environment.enum.ts -------------------------------------------------------------------------------- /server/src/common/enums/error-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/enums/error-type.enum.ts -------------------------------------------------------------------------------- /server/src/common/helper/constants/helper.enum.constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/constants/helper.enum.constant.ts -------------------------------------------------------------------------------- /server/src/common/helper/constants/helper.function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/constants/helper.function.ts -------------------------------------------------------------------------------- /server/src/common/helper/helper.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/helper.module.ts -------------------------------------------------------------------------------- /server/src/common/helper/interfaces/helper.date-service.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/interfaces/helper.date-service.interface.ts -------------------------------------------------------------------------------- /server/src/common/helper/interfaces/helper.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/interfaces/helper.interface.ts -------------------------------------------------------------------------------- /server/src/common/helper/services/helper.date.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/helper/services/helper.date.service.ts -------------------------------------------------------------------------------- /server/src/common/interfaces/IFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/interfaces/IFile.ts -------------------------------------------------------------------------------- /server/src/common/pipes/parse-object-id.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/common/pipes/parse-object-id.pipe.ts -------------------------------------------------------------------------------- /server/src/configs/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/app.config.ts -------------------------------------------------------------------------------- /server/src/configs/auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/auth.config.ts -------------------------------------------------------------------------------- /server/src/configs/aws.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/aws.config.ts -------------------------------------------------------------------------------- /server/src/configs/config-validation.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/config-validation.schema.ts -------------------------------------------------------------------------------- /server/src/configs/config.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/config.type.ts -------------------------------------------------------------------------------- /server/src/configs/database.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/database.config.ts -------------------------------------------------------------------------------- /server/src/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/configs/index.ts -------------------------------------------------------------------------------- /server/src/database/database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/database/database.module.ts -------------------------------------------------------------------------------- /server/src/database/database.providers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/database/database.providers.ts -------------------------------------------------------------------------------- /server/src/job/jobs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/job/jobs.module.ts -------------------------------------------------------------------------------- /server/src/job/router/jobs.router.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/job/router/jobs.router.module.ts -------------------------------------------------------------------------------- /server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/main.ts -------------------------------------------------------------------------------- /server/src/modules/admin/admin.module.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/modules/dictionary/controllers/dictionary.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/controllers/dictionary.controller.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/dictionary.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dictionary.http -------------------------------------------------------------------------------- /server/src/modules/dictionary/dictionary.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dictionary.module.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/dtos/create-dictionary.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dtos/create-dictionary.dto.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/dtos/dictionary.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dtos/dictionary.dto.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/dtos/filter-dictionary.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dtos/filter-dictionary.dto.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/dtos/update-dictionary.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/dtos/update-dictionary.dto.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/schemas/dictionary.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/schemas/dictionary.schema.ts -------------------------------------------------------------------------------- /server/src/modules/dictionary/services/dictionary.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/dictionary/services/dictionary.service.ts -------------------------------------------------------------------------------- /server/src/modules/faq/faq.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/faq/faq.module.ts -------------------------------------------------------------------------------- /server/src/modules/iam/iam.module.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/modules/report/report.module.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/src/modules/school/school.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/school/school.module.ts -------------------------------------------------------------------------------- /server/src/modules/task/task.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/task/task.controller.ts -------------------------------------------------------------------------------- /server/src/modules/task/task.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/task/task.module.ts -------------------------------------------------------------------------------- /server/src/modules/task/task.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/task/task.schema.ts -------------------------------------------------------------------------------- /server/src/modules/task/task.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/task/task.service.ts -------------------------------------------------------------------------------- /server/src/modules/word/controllers/word.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/controllers/word.controller.ts -------------------------------------------------------------------------------- /server/src/modules/word/dtos/create-word.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/dtos/create-word.dto.ts -------------------------------------------------------------------------------- /server/src/modules/word/dtos/filter-word.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/dtos/filter-word.dto.ts -------------------------------------------------------------------------------- /server/src/modules/word/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/dtos/index.ts -------------------------------------------------------------------------------- /server/src/modules/word/dtos/update-word.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/dtos/update-word.dto.ts -------------------------------------------------------------------------------- /server/src/modules/word/dtos/word.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/dtos/word.dto.ts -------------------------------------------------------------------------------- /server/src/modules/word/schemas/word.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/schemas/word.schema.ts -------------------------------------------------------------------------------- /server/src/modules/word/services/word.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/services/word.service.ts -------------------------------------------------------------------------------- /server/src/modules/word/word.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/word.http -------------------------------------------------------------------------------- /server/src/modules/word/word.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/modules/word/word.module.ts -------------------------------------------------------------------------------- /server/src/router/router.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/router/router.module.ts -------------------------------------------------------------------------------- /server/src/router/routes/routes.admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/router/routes/routes.admin.module.ts -------------------------------------------------------------------------------- /server/src/router/routes/routes.auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/router/routes/routes.auth.module.ts -------------------------------------------------------------------------------- /server/src/router/routes/routes.public.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/router/routes/routes.public.module.ts -------------------------------------------------------------------------------- /server/src/router/routes/routes.user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/src/router/routes/routes.user.module.ts -------------------------------------------------------------------------------- /server/src/shared/shared.module.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /server/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/test/jest-e2e.json -------------------------------------------------------------------------------- /server/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/tsconfig.build.json -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/masud-pervez/wordbook/HEAD/server/tsconfig.json --------------------------------------------------------------------------------