File tree Expand file tree Collapse file tree 1 file changed +13
-8
lines changed
Expand file tree Collapse file tree 1 file changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,19 @@ This is a monorepo with the following structure:
2121
2222```
2323packages/
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
You can’t perform that action at this time.
0 commit comments