Skip to content

Commit a85c577

Browse files
author
yunwoong
committed
Initial open source import: AWS IDP Pipeline
1 parent ada6755 commit a85c577

File tree

4 files changed

+123
-0
lines changed

4 files changed

+123
-0
lines changed

.gitignore

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,113 @@
1+
# See https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# MCP workspace (Docker development)
4+
mcp-workspace/
5+
6+
# compiled output
7+
dist
8+
tmp
9+
out-tsc
10+
# dependencies
11+
node_modules
12+
package-lock.json
13+
# IDEs and editors
14+
/.idea
15+
.project
16+
.classpath
17+
.c9/
18+
*.launch
19+
.settings/
20+
*.sublime-workspace
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
# misc
28+
/.sass-cache
29+
/connect.lock
30+
/coverage
31+
/libpeerconnection.log
32+
npm-debug.log
33+
yarn-error.log
34+
testem.log
35+
/typings
36+
# System Files
37+
.DS_Store
38+
Thumbs.db
39+
.nx/cache
40+
.nx/workspace-data
41+
.cursor/rules/
42+
.kiro/
43+
.roo/
44+
.amazonq/
45+
.claude/
46+
.venv/
47+
.nx/
48+
.pnpm-store/
49+
.github/instructions/nx.instructions.md
50+
vite.config.*.timestamp*
51+
vitest.config.*.timestamp*
52+
/reports
53+
__pycache__/
54+
55+
runtime-config.json
56+
57+
# Working Documents
58+
docs/PRD.md
59+
/scripts/
60+
.roomodes
61+
.taskmaster
62+
.windsurfrules
63+
.cursor/
64+
/backup
65+
/packages/backend/src/research_data
66+
67+
# Added by Claude Task Master
68+
# Logs
69+
logs
70+
*.log
71+
npm-debug.log*
72+
yarn-debug.log*
73+
yarn-error.log*
74+
dev-debug.log
75+
# Dependency directories
76+
node_modules/
77+
pnpm-lock.yaml
78+
# Environment variables
79+
.env
80+
.env.bak
81+
certificate.pem
82+
packages/infra/certs/
83+
# Editor directories and files
84+
conversation_checkpoints.db
85+
conversation_checkpoints.db-shm
86+
conversation_checkpoints.db-wal
87+
.idea
88+
.vscode
89+
*.suo
90+
*.ntvs*
91+
*.njsproj
92+
*.sln
93+
*.sw?
94+
ref_src/
95+
/packages/infra/src/lambda_layer/python/
96+
/packages/infra/src/lambda_layer/common/
97+
/packages/backup
98+
99+
# Backend
100+
/packages/results/
101+
/packages/backend/local_dev/data
102+
103+
# Frontend
104+
/packages/frontend/.next
105+
/packages/frontend/src/.next
106+
packages/frontend/tsconfig.tsbuildinfo
107+
108+
# Infra
109+
/packages/infra/*.xlsx
110+
/packages/infra/cdk.out/
111+
/packages/infra/stack-outputs-backup.json
112+
/packages/infra/.eslintcache
113+
cdk.context.json

.npmrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
strict-peer-dependencies=false
2+
auto-install-peers=true

.prettierignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Add files here to ignore them from prettier formatting
2+
/dist
3+
/coverage
4+
/.nx/cache
5+
/.nx/workspace-data

.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"singleQuote": true
3+
}

0 commit comments

Comments
 (0)