Skip to content

Commit

Permalink
feat: add project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
ybenitezf committed May 1, 2023
1 parent db99740 commit 8a581b0
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cdk.json → projects/cdk_app/cdk.json
@@ -1,5 +1,5 @@
{
"app": "python3 app.py",
"app": "python3 -m cdk_workshop.workshop_app.core",
"context": {
"@aws-cdk/aws-apigateway:usagePlanKeyOrderInsensitiveId": true,
"@aws-cdk/core:stackRelativeExports": true,
Expand Down
24 changes: 24 additions & 0 deletions projects/cdk_app/pyproject.toml
@@ -0,0 +1,24 @@
[tool.poetry]
name = "cdk_app"
version = "0.1.0"
description = ""
authors = ['Yoel Benitez Fonseca <ybenitezf@gmail.com>']
license = ""

packages = [
{include = "cdk_workshop/workshop_app", from = "../../bases"},
{include = "cdk_workshop/hit_counter", from = "../../components"},
{include = "cdk_workshop/cdk_workshop_stack", from = "../../components"}
]

[tool.poetry.dependencies]
python = "^3.10"
aws-cdk-lib = ">=2.68,<3.0"
constructs = ">=10.0.0,<11.0.0"
cdk-dynamo-table-view = "0.2.438"

[tool.poetry.group.dev.dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 8a581b0

Please sign in to comment.