gitextract_mjw2yo5y/ ├── .eslintignore ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ └── feature_request.yaml │ ├── PULL_REQUEST_TEMPLATE/ │ │ └── default.md │ └── workflows/ │ └── publish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── config/ │ └── husky/ │ └── pre-commit ├── examples/ │ ├── complex/ │ │ ├── .dockerignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── .gitpod.Dockerfile │ │ ├── .gitpod.yml │ │ ├── .npmrc │ │ ├── .prettierignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app/ │ │ │ ├── db.server.ts │ │ │ ├── entry.client.tsx │ │ │ ├── entry.server.tsx │ │ │ ├── models/ │ │ │ │ ├── note.server.ts │ │ │ │ └── user.server.ts │ │ │ ├── root.tsx │ │ │ ├── routes/ │ │ │ │ ├── healthcheck.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── join.tsx │ │ │ │ ├── login.tsx │ │ │ │ ├── logout.tsx │ │ │ │ ├── notes/ │ │ │ │ │ ├── $noteId.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── new.tsx │ │ │ │ └── notes.tsx │ │ │ ├── session.server.ts │ │ │ ├── utils.test.ts │ │ │ └── utils.ts │ │ ├── custom-server.js │ │ ├── cypress/ │ │ │ ├── .eslintrc.js │ │ │ ├── e2e/ │ │ │ │ └── smoke.cy.ts │ │ │ ├── fixtures/ │ │ │ │ └── example.json │ │ │ ├── support/ │ │ │ │ ├── commands.ts │ │ │ │ ├── create-user.ts │ │ │ │ ├── delete-user.ts │ │ │ │ └── e2e.ts │ │ │ └── tsconfig.json │ │ ├── cypress.config.ts │ │ ├── fly.toml │ │ ├── mocks/ │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── package.json │ │ ├── prisma/ │ │ │ ├── migrations/ │ │ │ │ ├── 20220713162558_init/ │ │ │ │ │ └── migration.sql │ │ │ │ └── migration_lock.toml │ │ │ ├── schema.prisma │ │ │ └── seed.ts │ │ ├── remix.config.js │ │ ├── remix.env.d.ts │ │ ├── remix.init/ │ │ │ ├── gitignore │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── start.sh │ │ ├── tailwind.config.js │ │ ├── test/ │ │ │ └── setup-test-env.ts │ │ ├── tsconfig.json │ │ └── vitest.config.ts │ └── simple/ │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── app/ │ │ ├── entry.client.tsx │ │ ├── entry.server.tsx │ │ ├── root.tsx │ │ └── routes/ │ │ └── index.tsx │ ├── package.json │ ├── remix.config.js │ ├── remix.env.d.ts │ └── tsconfig.json ├── package.json ├── src/ │ ├── constants.ts │ ├── entries/ │ │ ├── cli.ts │ │ └── lib.ts │ ├── plugins/ │ │ ├── hmr-fix.ts │ │ ├── inject.ts │ │ ├── remix.ts │ │ └── transform.ts │ ├── utils/ │ │ ├── code.ts │ │ ├── general.ts │ │ └── version.ts │ └── vite.ts ├── tools/ │ └── build.js └── tsconfig.json