.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # prod
  2. dist/
  3. dist-server/
  4. bun.lock
  5. package-lock.json
  6. # dev
  7. .yarn/
  8. !.yarn/releases
  9. .vscode/*
  10. !.vscode/launch.json
  11. !.vscode/*.code-snippets
  12. .idea/workspace.xml
  13. .idea/usage.statistics.xml
  14. .idea/shelf
  15. # deps
  16. node_modules/
  17. .wrangler
  18. # env
  19. .env
  20. .env.production
  21. .env.development
  22. .dev.vars
  23. # logs
  24. logs/
  25. *.log
  26. npm-debug.log*
  27. yarn-debug.log*
  28. yarn-error.log*
  29. pnpm-debug.log*
  30. lerna-debug.log*
  31. # misc
  32. .DS_Store
  33. .pnpm-store
  34. old
  35. app/entry.client.tsx
  36. app/entry.server.tsx
  37. app/root.tsx
  38. app/tailwind.css
  39. app/vite-env.d.ts
  40. app/config/config.server.ts
  41. app/errors/AppError.ts
  42. app/handlers/MemberTemplateHandler.server.ts
  43. app/lib/AdminTableHandler.server.ts
  44. app/lib/ApiClient.server.ts
  45. app/lib/ExcelParser.server.ts
  46. app/lib/queryClient.ts
  47. app/lib/SystemParamsManager.server.ts
  48. app/middleware/authMiddleware.server.ts
  49. app/middleware/memberAuthMiddleware.server.ts
  50. app/routes/_index.tsx
  51. app/routes/api.v1.admin.ad.ts
  52. app/routes/api.v1.admin.article.ts
  53. app/routes/api.v1.admin.config.ts
  54. app/routes/api.v1.admin.department.ts
  55. app/routes/api.v1.admin.member.ts
  56. app/routes/api.v1.admin.menu.ts
  57. app/routes/api.v1.admin.role.ts
  58. app/routes/api.v1.admin.staff.login.ts
  59. app/routes/api.v1.admin.staff.logined.info.ts
  60. app/routes/api.v1.admin.staff.logout.ts
  61. app/routes/api.v1.admin.staff.ts
  62. app/routes/api.v1.admin.storage.policy.ts
  63. app/routes/api.v1.convert.ts
  64. app/routes/api.v1.member.auth.login.ts
  65. app/routes/api.v1.member.auth.logined.info.ts
  66. app/routes/api.v1.member.auth.logout.ts
  67. app/routes/api.v1.member.auth.register.ts
  68. app/routes/api.v1.member.auth.sms-code.ts
  69. app/routes/api.v1.member.config.ts
  70. app/routes/api.v1.member.templates.ts
  71. app/routes/admin/AdminMainApp.client.tsx
  72. app/routes/admin/routes.tsx
  73. app/routes/components/ExcelToJson/config.ts
  74. app/routes/components/ExcelToJson/index copy.tsx
  75. app/routes/components/ExcelToJson/index.tsx
  76. app/routes/components/ExcelToJson/styles.css
  77. app/routes/components/ExcelToJson/types.ts
  78. app/routes/components/ExcelToJson/components/FileUpload.tsx
  79. app/routes/components/ExcelToJson/components/DataViewer/index.tsx
  80. app/routes/components/ExcelToJson/components/DataViewer/JsonView.tsx
  81. app/routes/components/ExcelToJson/components/DataViewer/TableView.tsx
  82. app/routes/components/ExcelToJson/components/SheetConfig/FieldMapping.tsx
  83. app/routes/components/ExcelToJson/components/SheetConfig/index.tsx
  84. app/routes/components/ExcelToJson/hooks/useExcelParser.ts
  85. app/routes/components/ExcelToJson/hooks/useSheetConfig.ts
  86. app/routes/components/RemixQueryClientProvider/index.tsx
  87. app/routes/member/MemberMainApp.client.tsx
  88. app/routes/member/routes.tsx
  89. app/routes/member/api-playground/index.tsx
  90. app/routes/member/components/ApiTester.tsx
  91. app/routes/member/components/ApiTesterFileUpload.tsx
  92. app/routes/member/components/TemplateCard.tsx
  93. app/routes/member/components/TemplateSelector.tsx
  94. app/routes/member/home/index.tsx
  95. app/routes/member/template/edit.tsx
  96. app/routes/member/template/list.tsx