hotlane 0.0.1__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.
- hotlane-0.0.1/.gitignore +4 -0
- hotlane-0.0.1/PKG-INFO +19 -0
- hotlane-0.0.1/README.md +7 -0
- hotlane-0.0.1/pyproject.toml +20 -0
- hotlane-0.0.1/src/hotlane/__init__.py +6 -0
hotlane-0.0.1/.gitignore
ADDED
hotlane-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hotlane
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Validation-first deployment: fork a warm running instance, verify, promote via atomic proxy flip, roll back by pointer. Name reserved while the MVP is built.
|
|
5
|
+
Project-URL: Homepage, https://github.com/StefanIancu/hotlane
|
|
6
|
+
Project-URL: Repository, https://github.com/StefanIancu/hotlane
|
|
7
|
+
Author: Stefan Iancu
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: agentic,ci-cd,deployment,rollback,warm-deploy
|
|
10
|
+
Requires-Python: >=3.9
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# hotlane
|
|
14
|
+
|
|
15
|
+
Validation-first deployment: push a delta, fork a warm running instance of your app, verify it in isolation, promote it with an atomic proxy flip, and roll back by pointer in milliseconds. Container images are built asynchronously, off the critical path.
|
|
16
|
+
|
|
17
|
+
This package name is reserved while the MVP is built. The real CLI will land here.
|
|
18
|
+
|
|
19
|
+
Project: https://github.com/StefanIancu/hotlane
|
hotlane-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# hotlane
|
|
2
|
+
|
|
3
|
+
Validation-first deployment: push a delta, fork a warm running instance of your app, verify it in isolation, promote it with an atomic proxy flip, and roll back by pointer in milliseconds. Container images are built asynchronously, off the critical path.
|
|
4
|
+
|
|
5
|
+
This package name is reserved while the MVP is built. The real CLI will land here.
|
|
6
|
+
|
|
7
|
+
Project: https://github.com/StefanIancu/hotlane
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "hotlane"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Validation-first deployment: fork a warm running instance, verify, promote via atomic proxy flip, roll back by pointer. Name reserved while the MVP is built."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "Stefan Iancu" }]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
keywords = ["deployment", "ci-cd", "rollback", "warm-deploy", "agentic"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/StefanIancu/hotlane"
|
|
17
|
+
Repository = "https://github.com/StefanIancu/hotlane"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/hotlane"]
|