Skip to content

Commit

Permalink
Merge pull request #1 from fourTheorem/add-python-lambda
Browse files Browse the repository at this point in the history
feat: add python lambda construct with uv
  • Loading branch information
eoinsha authored Oct 16, 2024
2 parents 1bc1379 + 0f7db90 commit 393fbf5
Show file tree
Hide file tree
Showing 36 changed files with 4,894 additions and 763 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions .github/workflows/release.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .mergify.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions .projen/deps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 15 additions & 3 deletions .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 16 additions & 6 deletions .projenrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,26 @@ import { awscdk } from 'projen';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Eoin Shanaghy',
authorAddress: 'eoin.shanaghy@fourtheorem.com',
cdkVersion: '2.1.0',
cdkVersion: '2.161.1',
constructsVersion: '10.3.0',
defaultReleaseBranch: 'main',
jsiiVersion: '~5.5.0',
name: 'ft-python-lambda',
name: 'uv-python-lambda',
projenrcTs: true,
repositoryUrl: 'git@github.com:eoinsha/dotfiles.git',

repositoryUrl: 'git@github.com:fourtheorem/uv-python-lambda.git',
publishToPypi: {
distName: 'uv-python-lambda',
module: 'uv_python_lambda',
},
// cdkVersion: '2.1.0', /* CDK version to use. */
// cdkDependencies: [], /* CDK dependencies of this module. */
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
devDeps: ['@biomejs/biome'] /* Build dependencies for this module. */,
// packageName: undefined, /* The "name" in package.json. */
jestOptions: {
extraCliOptions: ['--testTimeout=300000'],
},
});
project.synth();
project.files;
project.synth();
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.tabSize": 2,
"eslint.enable": false,
"editor.defaultFormatter": "biomejs.biome",
"editor.formatOnSave": true
}
Loading

0 comments on commit 393fbf5

Please sign in to comment.