xenfra 0.2.1__tar.gz → 0.2.2__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.
Files changed (24) hide show
  1. {xenfra-0.2.1 → xenfra-0.2.2}/PKG-INFO +1 -1
  2. {xenfra-0.2.1 → xenfra-0.2.2}/pyproject.toml +1 -1
  3. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/engine.py +1 -0
  4. {xenfra-0.2.1 → xenfra-0.2.2}/README.md +0 -0
  5. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/__init__.py +0 -0
  6. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/api/auth.py +0 -0
  7. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/api/billing.py +0 -0
  8. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/api/connections.py +0 -0
  9. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/api/main.py +0 -0
  10. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/api/webhooks.py +0 -0
  11. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/cli/main.py +0 -0
  12. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/config.py +0 -0
  13. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/db/models.py +0 -0
  14. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/db/session.py +0 -0
  15. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/dependencies.py +0 -0
  16. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/dockerizer.py +0 -0
  17. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/mcp_client.py +0 -0
  18. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/models.py +0 -0
  19. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/recipes.py +0 -0
  20. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/security.py +0 -0
  21. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/templates/Dockerfile.j2 +0 -0
  22. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/templates/cloud-init.sh.j2 +0 -0
  23. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/templates/docker-compose.yml.j2 +0 -0
  24. {xenfra-0.2.1 → xenfra-0.2.2}/src/xenfra/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: xenfra
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A 'Zen Mode' infrastructure engine for Python developers.
5
5
  Author: xenfra-cloud
6
6
  Author-email: xenfra-cloud <xenfracloud@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "xenfra"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "A 'Zen Mode' infrastructure engine for Python developers."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -182,6 +182,7 @@ class InfraEngine:
182
182
  logger("\n[bold blue]PHASE 3: CREATING SERVER SETUP SCRIPT[/bold blue]")
183
183
  cloud_init_script = recipes.generate_stack(context)
184
184
  logger(" - Generated cloud-init script.")
185
+ logger(f"--- Cloud-init script content ---\n{cloud_init_script}\n---------------------------------")
185
186
 
186
187
  # === 4. DROPLET CREATION STAGE ===
187
188
  logger("\n[bold blue]PHASE 4: PROVISIONING SERVER[/bold blue]")
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