Files
pulumi-dokploy/.gitignore
Max Vojtkov bb3c15135b Bridge terraform-provider-dokploy into a Pulumi provider
18 resources and 5 data sources mapped into the dokploy:index module, with
SDKs generated for TypeScript, Python, Go and .NET.
2026-08-08 15:28:16 +03:00

30 lines
567 B
Plaintext

# Provider and codegen binaries
/bin/
# The generated SDKs under sdk/ ARE committed — Go module consumers fetch them
# straight from this repo. Only their build output is ignored.
/sdk/nodejs/bin/
/sdk/nodejs/node_modules/
/sdk/dotnet/bin/
/sdk/dotnet/obj/
/sdk/python/build/
/sdk/python/dist/
/sdk/python/*.egg-info/
__pycache__/
*.tsbuildinfo
# Pulumi stack state from examples
Pulumi.*.yaml
!examples/**/Pulumi.yaml
.pulumi/
# Go
vendor/
*.test
coverage.out
# Example dependencies
/examples/**/node_modules/
/examples/**/package-lock.json
/examples/**/venv/