Skip to content

Commit e3f2075

Browse files
committed
Update Project Structure section to reflect current detailed layout
1 parent 901acf6 commit e3f2075

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

README.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,19 @@ This is a monorepo with the following structure:
2121

2222
```
2323
packages/
24-
├── cdk/ # AWS CDK infrastructure code
25-
│ ├── bin/ # CDK app entry point
26-
│ ├── constructs/ # Reusable CDK constructs
27-
│ ├── resources/ # AWS resource definitions
28-
│ └── stacks/ # CDK stack definitions
29-
├── createIndexFunction/ # Lambda function for OpenSearch index management
30-
├── slackBotFunction/ # Lambda function for Slack bot integration
31-
└── syncKnowledgeBaseFunction/ # Lambda function for automatic knowledge base sync
24+
├── cdk/ # AWS CDK infrastructure code
25+
│ ├── bin/ # CDK app entry point
26+
│ │ └── utils/ # CDK utility functions
27+
│ ├── constructs/ # Reusable CDK constructs
28+
│ │ └── RestApiGateway/ # API Gateway specific constructs
29+
│ ├── resources/ # AWS resource definitions
30+
│ └── stacks/ # CDK stack definitions
31+
├── createIndexFunction/ # Lambda function for OpenSearch index management
32+
│ └── tests/ # Unit tests for createIndex function
33+
├── slackBotFunction/ # Lambda function for Slack bot integration
34+
│ └── tests/ # Unit tests for slackBot function
35+
└── syncKnowledgeBaseFunction/ # Lambda function for automatic knowledge base sync
36+
└── tests/ # Unit tests for syncKnowledgeBase function
3237
```
3338

3439
## Contributing

0 commit comments

Comments
 (0)