summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore61
1 files changed, 61 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..4a325b8c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,61 @@
+# 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*
+
+# docusign key
+# *.key
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
+
+# 형상관리 불필요 파일
+/logs
+/uploads
+
+# 파일시스템에 저장한 첨부파일들 (필요시 추가)
+/public/contracts
+/public/documents
+/public/rfq
+/public/uploads
+/public/vendors
+/public/profiles
+/tmp
+
+# 직접 참조가 불가능해 복사가 필요했던 라이브러리 (pdftrone)
+# node_modules/@pdftron/public 경로에서 core 및 ui 경로를 복사해 사용
+/public/pdftronWeb \ No newline at end of file