mirror of
https://github.com/dflow-sh/dflow.git
synced 2026-04-26 05:45:51 +03:00
[GH-ISSUE #235] Ensure project and service name uniqueness #158
Labels
No labels
backend
bug
developer
documentation
enhancement
enhancement
enhancement
feature
feature
fix
frontend
frontend
good first issue
help wanted
pull-request
safety-check
security
styles
styles
templates
templates
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/dflow#158
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @akhil-naidu on GitHub (Jun 10, 2025).
Original GitHub issue: https://github.com/dflow-sh/dflow/issues/235
Originally assigned to: @pavanbhaskardev on GitHub.
If a project name and service name are not unique, don't throw error and stop the process of creation of project or service, replace the project/service name with a unique name and continue the process.
eg-1: project name => hasura already exists => new project created with hasura => automatically suffix the new project name with hasura-1
eg-2: project name => hasura, and hasura-1 already exists => new project created with hasura or hasura-1 => automatically suffix the new project name with hasura-2
@akhil-naidu commented on GitHub (Jun 10, 2025):
service name max => 8 char from frontend => on db 11
project name max => 8 char => on db 11
total max => 24 char
@pavanbhaskardev commented on GitHub (Jun 11, 2025):
Added auto-unique suffix to project name, when it's created using duplicate name, character validation is pending