summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-03-25 15:55:45 +0900
committerjoonhoekim <26rote@gmail.com>2025-03-25 15:55:45 +0900
commit1a2241c40e10193c5ff7008a7b7b36cc1d855d96 (patch)
tree8a5587f10ca55b162d7e3254cb088b323a34c41b /.gitignore
initial commit
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore57
1 files changed, 57 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..7a6dfa0e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,57 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.*
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/versions
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+.pnpm-debug.log*
+
+# env files (can opt-in for committing if needed)
+# .env*
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
+
+# 형상관리 불필요 파일
+/logs
+/uploads
+
+# 파일시스템에 저장한 첨부파일들 (필요시 추가)
+/public/contracts
+/public/documents
+/public/rfq
+/public/uploads
+/public/vendors
+/public/profiles
+
+# 직접 참조가 불가능해 복사가 필요했던 라이브러리 (pdftrone)
+# node_modules/@pdftron/public 경로에서 core 및 ui 경로를 복사해 사용
+/public/pdftronWeb \ No newline at end of file