plain.dev 0.7.6__py3-none-any.whl → 0.8.1__py3-none-any.whl
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.
- plain/dev/cli.py +23 -10
- {plain_dev-0.7.6.dist-info → plain_dev-0.8.1.dist-info}/METADATA +1 -1
- {plain_dev-0.7.6.dist-info → plain_dev-0.8.1.dist-info}/RECORD +6 -6
- {plain_dev-0.7.6.dist-info → plain_dev-0.8.1.dist-info}/LICENSE +0 -0
- {plain_dev-0.7.6.dist-info → plain_dev-0.8.1.dist-info}/WHEEL +0 -0
- {plain_dev-0.7.6.dist-info → plain_dev-0.8.1.dist-info}/entry_points.txt +0 -0
plain/dev/cli.py
CHANGED
@@ -81,22 +81,36 @@ class Dev:
|
|
81
81
|
"PYTHONPATH": os.path.join(APP_PATH.parent, "app"),
|
82
82
|
}
|
83
83
|
self.project_name = os.path.basename(os.getcwd())
|
84
|
-
self.domain = f"{self.project_name}.localhost"
|
85
84
|
self.ssl_cert_path = None
|
86
85
|
self.ssl_key_path = None
|
87
86
|
|
87
|
+
self.is_codespace = "CODESPACES" in os.environ
|
88
|
+
|
89
|
+
if self.is_codespace:
|
90
|
+
codespace_name = os.environ["CODESPACE_NAME"]
|
91
|
+
codespace_forward_domain = os.environ[
|
92
|
+
"GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN"
|
93
|
+
]
|
94
|
+
self.domain = f"{codespace_name}-{self.port}.{codespace_forward_domain}"
|
95
|
+
self.url = f"https://{self.domain}/"
|
96
|
+
else:
|
97
|
+
self.domain = f"{self.project_name}.localhost"
|
98
|
+
self.url = f"https://{self.domain}:{self.port}/"
|
99
|
+
|
88
100
|
def run(self):
|
89
101
|
pid = Pid()
|
90
102
|
pid.write()
|
91
103
|
|
92
104
|
try:
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
105
|
+
if not self.is_codespace:
|
106
|
+
mkcert_manager = MkcertManager()
|
107
|
+
mkcert_manager.setup_mkcert(install_path=Path.home() / ".plain" / "dev")
|
108
|
+
self.ssl_cert_path, self.ssl_key_path = mkcert_manager.generate_certs(
|
109
|
+
domain=self.domain,
|
110
|
+
storage_path=Path(settings.PLAIN_TEMP_PATH) / "dev" / "certs",
|
111
|
+
)
|
112
|
+
self.modify_hosts_file()
|
113
|
+
|
100
114
|
self.set_csrf_and_allowed_hosts()
|
101
115
|
self.run_preflight()
|
102
116
|
|
@@ -107,9 +121,8 @@ class Dev:
|
|
107
121
|
self.add_services()
|
108
122
|
|
109
123
|
# Output the clickable link before starting the manager loop
|
110
|
-
url = f"https://{self.domain}:{self.port}/"
|
111
124
|
click.secho(
|
112
|
-
f"\nYour app will run at: {click.style(url, fg='green', underline=True)}\n",
|
125
|
+
f"\nYour app will run at: {click.style(self.url, fg='green', underline=True)}\n",
|
113
126
|
bold=True,
|
114
127
|
)
|
115
128
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
plain/dev/README.md,sha256=BQDaRKfsafIPzx7vtVt-zS-a8l6sxbQThhQTvu7tp3Y,3699
|
2
2
|
plain/dev/__init__.py,sha256=C1JrkNE5XX2DLgBXXLAV_UyhofwVd0ZPL59fPUMbOKo,139
|
3
|
-
plain/dev/cli.py,sha256=
|
3
|
+
plain/dev/cli.py,sha256=tcJjCcJSZi3-reWY7-u5f4CTELFMVJ_-vdDoUOL_7ZM,9814
|
4
4
|
plain/dev/config.py,sha256=h6o5YZtJhg-cFIWoqIDWuMCC5T09cxEsBaa3BP4Nii0,632
|
5
5
|
plain/dev/contribute/__init__.py,sha256=9ByBOIdM8DebChjNz-RH2atdz4vWe8somlwNEsbhwh4,40
|
6
6
|
plain/dev/contribute/cli.py,sha256=qZ7YmE_upbw-Y5NRpvaHnJTPp9kvn21fPQ7G0n1LAkg,2277
|
@@ -26,8 +26,8 @@ plain/dev/templates/dev/requests.html,sha256=kQKJZq5L77juuL_t8UjcAehEU61U4RXNnKa
|
|
26
26
|
plain/dev/urls.py,sha256=b4NL2I6Ok-t7nTPjRnKoz_LQRttE3_mp8l2NlmeYQ9I,146
|
27
27
|
plain/dev/utils.py,sha256=4wMzpvj1Is_c0QxhsTu34_P9wAYlzw4glNPfVtZr_0A,123
|
28
28
|
plain/dev/views.py,sha256=r2Ivk7OXytpRhXq4DZpsb7FXNP9vzmEE3D5kLajYG4w,1073
|
29
|
-
plain_dev-0.
|
30
|
-
plain_dev-0.
|
31
|
-
plain_dev-0.
|
32
|
-
plain_dev-0.
|
33
|
-
plain_dev-0.
|
29
|
+
plain_dev-0.8.1.dist-info/LICENSE,sha256=YDg-l_Rj7LVP5uDXy04eQPGb_DYVXAHAHYd9r3pU1Cg,2713
|
30
|
+
plain_dev-0.8.1.dist-info/METADATA,sha256=CRURQ42On2jPDUQe8ELDbJjwBs9A9sb99899VX-JlbU,4675
|
31
|
+
plain_dev-0.8.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
32
|
+
plain_dev-0.8.1.dist-info/entry_points.txt,sha256=rBo-S4THn07f55UwHBuUhIbDhlUq3EzTOD8mIb5fGQg,99
|
33
|
+
plain_dev-0.8.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|