plain.dev 0.8.1__py3-none-any.whl → 0.8.2__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 CHANGED
@@ -93,9 +93,11 @@ class Dev:
93
93
  ]
94
94
  self.domain = f"{codespace_name}-{self.port}.{codespace_forward_domain}"
95
95
  self.url = f"https://{self.domain}/"
96
+ self.gunicorn_bind = str(self.port)
96
97
  else:
97
98
  self.domain = f"{self.project_name}.localhost"
98
99
  self.url = f"https://{self.domain}:{self.port}/"
100
+ self.gunicorn_bind = f"{self.domain}:{self.port}"
99
101
 
100
102
  def run(self):
101
103
  pid = Pid()
@@ -228,11 +230,7 @@ class Dev:
228
230
  gunicorn_cmd = [
229
231
  "gunicorn",
230
232
  "--bind",
231
- f"{self.domain}:{self.port}",
232
- "--certfile",
233
- str(self.ssl_cert_path),
234
- "--keyfile",
235
- str(self.ssl_key_path),
233
+ self.gunicorn_bind,
236
234
  "--reload",
237
235
  "plain.wsgi:app",
238
236
  "--timeout",
@@ -247,6 +245,15 @@ class Dev:
247
245
  "--log-config-json",
248
246
  str(Path(__file__).parent / "gunicorn_logging.json"),
249
247
  ]
248
+
249
+ if self.ssl_cert_path and self.ssl_key_path:
250
+ gunicorn_cmd += [
251
+ "--certfile",
252
+ str(self.ssl_cert_path),
253
+ "--keyfile",
254
+ str(self.ssl_key_path),
255
+ ]
256
+
250
257
  gunicorn = " ".join(gunicorn_cmd)
251
258
 
252
259
  if plain_db_installed:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plain.dev
3
- Version: 0.8.1
3
+ Version: 0.8.2
4
4
  Summary: Local development tools for Plain.
5
5
  Home-page: https://plainframework.com
6
6
  License: BSD-3-Clause
@@ -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=tcJjCcJSZi3-reWY7-u5f4CTELFMVJ_-vdDoUOL_7ZM,9814
3
+ plain/dev/cli.py,sha256=qi0Zt9IYaIskiiuEnnOJcrk_os4IjQD5VvI8uAJGUbQ,10029
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.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,,
29
+ plain_dev-0.8.2.dist-info/LICENSE,sha256=YDg-l_Rj7LVP5uDXy04eQPGb_DYVXAHAHYd9r3pU1Cg,2713
30
+ plain_dev-0.8.2.dist-info/METADATA,sha256=R47cOF985gxiXfkVxstlVuL_EQONMF7B6udisLYwksk,4675
31
+ plain_dev-0.8.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
32
+ plain_dev-0.8.2.dist-info/entry_points.txt,sha256=rBo-S4THn07f55UwHBuUhIbDhlUq3EzTOD8mIb5fGQg,99
33
+ plain_dev-0.8.2.dist-info/RECORD,,