plain.dev 0.8.0__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 CHANGED
@@ -81,22 +81,28 @@ 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
- if "CODESPACES" in os.environ:
94
- codespace_name = os.environ["CODESPACE_NAME"]
95
- codespace_forward_domain = os.environ[
96
- "GITHUB_CODESPACES_PORT_FORWARDING_DOMAIN"
97
- ]
98
- self.domain = f"https://{codespace_name}.{codespace_forward_domain}"
99
- else:
105
+ if not self.is_codespace:
100
106
  mkcert_manager = MkcertManager()
101
107
  mkcert_manager.setup_mkcert(install_path=Path.home() / ".plain" / "dev")
102
108
  self.ssl_cert_path, self.ssl_key_path = mkcert_manager.generate_certs(
@@ -115,9 +121,8 @@ class Dev:
115
121
  self.add_services()
116
122
 
117
123
  # Output the clickable link before starting the manager loop
118
- url = f"https://{self.domain}:{self.port}/"
119
124
  click.secho(
120
- 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",
121
126
  bold=True,
122
127
  )
123
128
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plain.dev
3
- Version: 0.8.0
3
+ Version: 0.8.1
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=4X3zSo_RbbRFv0f4egFNoXoMuHzZoetK-c3PeouS-1A,9689
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.8.0.dist-info/LICENSE,sha256=YDg-l_Rj7LVP5uDXy04eQPGb_DYVXAHAHYd9r3pU1Cg,2713
30
- plain_dev-0.8.0.dist-info/METADATA,sha256=7a9iLx-8rYiEZntBRHg3vWjUYlPkRx9k7T686lZ0sdE,4675
31
- plain_dev-0.8.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
32
- plain_dev-0.8.0.dist-info/entry_points.txt,sha256=rBo-S4THn07f55UwHBuUhIbDhlUq3EzTOD8mIb5fGQg,99
33
- plain_dev-0.8.0.dist-info/RECORD,,
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,,