Skip to content

Commit 4710b25

Browse files
authored
add reflex hosting cli (#6369)
* add reflex hosting cli * update pyproject * make pre commit pass * move the files to similar structure * fix links to directory names * delete scripts dir * move the tests * make tests pass * delet config files * delete actions * fix greptile complaints * fix greptile complains again * fix greptile comments * respond to more greptile comments * fix infinite recursion * add any missing timeouts and guard against not authenticated
1 parent 2fe1a44 commit 4710b25

56 files changed

Lines changed: 9723 additions & 8 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

packages/hatch-reflex-pyi/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "hatch-reflex-pyi"
33
dynamic = ["version"]
44
description = "Hatch build hook that generates .pyi stubs for Reflex component packages."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/integrations-docs/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-integrations-docs"
33
dynamic = ["version"]
44
description = "Reflex Integrations Docs."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-base/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-base"
33
dynamic = ["version"]
44
description = "Core types for the Reflex framework."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-code/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-code"
33
dynamic = ["version"]
44
description = "Reflex code display components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-core/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-core"
33
dynamic = ["version"]
44
description = "UI components for Reflex."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-dataeditor/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-dataeditor"
33
dynamic = ["version"]
44
description = "Reflex dataeditor components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-gridjs/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-gridjs"
33
dynamic = ["version"]
44
description = "Reflex gridjs components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-internal/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-internal"
33
dynamic = ["version"]
44
description = "Reflex internal components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
@@ -36,6 +37,7 @@ dependencies = [
3637
"reflex-components-react-player",
3738
"reflex-components-recharts",
3839
"reflex-components-sonner",
40+
"reflex-hosting-cli",
3941
]
4042

4143
[build-system]

packages/reflex-components-lucide/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-lucide"
33
dynamic = ["version"]
44
description = "Reflex lucide components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

packages/reflex-components-markdown/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name = "reflex-components-markdown"
33
dynamic = ["version"]
44
description = "Reflex markdown components."
5+
license.text = "Apache-2.0"
56
readme = "README.md"
67
authors = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]
78
maintainers = [{ name = "Khaleel Al-Adhami", email = "[email protected]" }]

0 commit comments

Comments
 (0)