The URL for the deployed site.
| 350 | |
| 351 | |
| 352 | class DeploymentPostResponse(Base): |
| 353 | """The URL for the deployed site.""" |
| 354 | |
| 355 | # The frontend URL |
| 356 | frontend_url: str = Field(..., regex=r"^https?://", min_length=8) |
| 357 | # The backend URL |
| 358 | backend_url: str = Field(..., regex=r"^https?://", min_length=8) |
| 359 | |
| 360 | |
| 361 | class DeploymentsPostParam(Base): |