Merged
Conversation
…move related code. Switched to sslip.io as dns-hostname service
…ust related utility functions
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request refactors domain management logic to generalize support for provider-based hostnames (specifically
quickstack.me), replacing the previoustraefik.me-specific implementation. It introduces new utilities for handlingquickstack.medomains, updates validation and UI flows, and removes legacy code related totraefik.me. The changes improve maintainability and user experience for domain management features.Domain Provider Generalization and Validation:
TraefikMeUtilswithHostnameDnsProviderUtilsfor domain validation and detection insrc/app/project/app/[appId]/domains/actions.ts, updating error messages and logic to supportquickstack.medomains. (src/app/project/app/[appId]/domains/actions.tsL9-R11, src/app/project/app/[appId]/domains/actions.tsL26-R29)getQuickstackDomainSuffixto generate the hex-basedquickstack.medomain suffix using the configured public IPv4 address. (src/app/project/app/[appId]/domains/actions.tsR62-R70)UI/UX Improvements for Domain Editing:
src/app/project/app/[appId]/domains/domain-edit-overlay.tsx) to support tabbed editing for custom andquickstack.medomains, including dynamic prefix extraction, domain suffix loading, and improved input handling. (src/app/project/app/[appId]/domains/domain-edit-overlay.tsxL22-R60, src/app/project/app/[appId]/domains/domain-edit-overlay.tsxR91-R108, src/app/project/app/[appId]/domains/domain-edit-overlay.tsxL79-R133, src/app/project/app/[appId]/domains/domain-edit-overlay.tsxR164-R225)Testing and Utilities:
HostnameDnsProviderUtilscovering validation, detection, and hostname generation forquickstack.medomains.TraefikMeUtilsas part of the migration.Code Cleanup and Legacy Removal:
traefik.mecertificate updates from actions, imports, and UI components in both the settings and authentication flows. [1] [2] [3] [4] [5] [6]Dependency Management:
packageManagerfield for Yarn inpackage.jsonto ensure consistent dependency management.