xenfra 0.3.9__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {xenfra-0.3.9 → xenfra-0.4.0}/PKG-INFO +1 -1
- {xenfra-0.3.9 → xenfra-0.4.0}/pyproject.toml +1 -1
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/deployments.py +1 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/README.md +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/__init__.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/__init__.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/auth.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/auth_device.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/intelligence.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/projects.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/commands/security_cmd.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/main.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/__init__.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/auth.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/codebase.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/config.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/errors.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/security.py +0 -0
- {xenfra-0.3.9 → xenfra-0.4.0}/src/xenfra/utils/validation.py +0 -0
|
@@ -356,6 +356,7 @@ def deploy(project_name, git_repo, branch, framework, region, size, no_heal):
|
|
|
356
356
|
# Resolve values with precedence: 1. CLI Flag, 2. xenfra.yaml, 3. Default
|
|
357
357
|
project_name = project_name or config.get("name") or os.path.basename(os.getcwd())
|
|
358
358
|
framework = framework or config.get("framework")
|
|
359
|
+
is_dockerized = config.get("is_dockerized", True)
|
|
359
360
|
region = region or config.get("region") or "nyc3"
|
|
360
361
|
|
|
361
362
|
# Resolve size slug (complex mapping)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|