We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7834791 commit 0d384a3Copy full SHA for 0d384a3
2 files changed
.dockerignore
@@ -0,0 +1,14 @@
1
+# Exclude everything by default
2
+*
3
+
4
+# Include only the essential files needed for building the library
5
+!README.md
6
+!LICENSE
7
+!pyproject.toml
8
+!poetry.lock
9
+!zitadel_client/
10
+!zitadel_client/**/*
11
12
+# Exclude Python bytecode files
13
+zitadel_client/**/__pycache__/
14
+zitadel_client/**/*$py.class
devbox.json
@@ -23,6 +23,10 @@
23
"check": [
24
"poetry run ruff check .",
25
"poetry run mypy"
26
+ ],
27
+ "replit": [
28
+ "docker build --tag python-repl --file Dockerfile .",
29
+ "docker run --rm --interactive --tty python-repl"
30
]
31
}
32
0 commit comments