gitextract_s_o25e31/ ├── .dockerignore ├── .github/ │ └── workflows/ │ ├── api.yaml │ └── web.yaml ├── .gitignore ├── LICENSE ├── README.md ├── apps/ │ ├── api/ │ │ ├── .eslintrc.js │ │ ├── .prettierrc │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── nest-cli.json │ │ ├── package.json │ │ ├── prisma/ │ │ │ ├── migrations/ │ │ │ │ ├── 20220307034109_initial_migrate/ │ │ │ │ │ └── migration.sql │ │ │ │ └── migration_lock.toml │ │ │ └── schema.prisma │ │ ├── src/ │ │ │ ├── app.controller.spec.ts │ │ │ ├── app.controller.ts │ │ │ ├── app.module.ts │ │ │ ├── app.service.ts │ │ │ ├── config/ │ │ │ │ └── environment-variables.ts │ │ │ ├── main.ts │ │ │ └── persistence/ │ │ │ ├── persistence.module.ts │ │ │ └── prisma/ │ │ │ ├── prisma.service.spec.ts │ │ │ └── prisma.service.ts │ │ ├── test/ │ │ │ ├── app.e2e-spec.ts │ │ │ └── jest-e2e.json │ │ ├── tsconfig.build.json │ │ ├── tsconfig.json │ │ └── webpack-hmr.config.js │ └── web/ │ ├── .eslintrc.js │ ├── Dockerfile │ ├── README.md │ ├── jest.config.js │ ├── jest.setup.js │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.tsx │ │ └── index.tsx │ ├── postcss.config.js │ ├── src/ │ │ ├── common/ │ │ │ └── .gitkeep │ │ ├── screens/ │ │ │ ├── admin/ │ │ │ │ └── .gitkeep │ │ │ ├── auth/ │ │ │ │ └── login/ │ │ │ │ ├── login.test.tsx │ │ │ │ └── login.tsx │ │ │ ├── common/ │ │ │ │ └── .gitkeep │ │ │ └── employee/ │ │ │ └── .gitkeep │ │ ├── store/ │ │ │ ├── index.ts │ │ │ └── services/ │ │ │ └── api.ts │ │ └── styles/ │ │ └── global.css │ ├── tailwind.config.js │ └── tsconfig.json ├── docker-compose.yml ├── package-scripts.js ├── package.json ├── packages/ │ ├── config/ │ │ ├── eslint-preset.js │ │ ├── nginx.conf │ │ ├── package.json │ │ ├── postcss.config.js │ │ └── tailwind.config.js │ ├── tsconfig/ │ │ ├── README.md │ │ ├── base.json │ │ ├── nestjs.json │ │ ├── nextjs.json │ │ ├── package.json │ │ └── react-library.json │ └── ui/ │ ├── components/ │ │ └── Button/ │ │ └── Button.tsx │ ├── index.tsx │ ├── package.json │ └── tsconfig.json └── turbo.json