adding pulumi poc for website deployment

This commit is contained in:
David Brinovec
2026-09-07 16:40:09 -04:00
parent 2844134064
commit 94dd775061
12 changed files with 827 additions and 0 deletions

19
infra/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "infra"
version = "0.1.0"
description = "Add your description here"
authors = [
{ name = "David Brinovec", email = "david.brinovec@gmail.com" }
]
requires-python = ">=3.14"
dependencies = [
"pulumi>=3.261.0",
"pulumi-cloudflare>=6.20.0",
]
[project.scripts]
infra = "infra:main"
[build-system]
requires = ["uv_build>=0.12.5,<0.13.0"]
build-backend = "uv_build"