mirror of
https://github.com/community-scripts/ProxmoxVE-Local.git
synced 2026-04-25 12:45:50 +03:00
[GH-ISSUE #406] add private git repos #118
Labels
No labels
bug
enhancement
enhancement
feature
in progress
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ProxmoxVE-Local#118
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 @patricklind on GitHub (Dec 13, 2025).
Original GitHub issue: https://github.com/community-scripts/ProxmoxVE-Local/issues/406
🌟 Briefly describe the feature
private git repos
📝 Detailed description
Could you add something similar to this?
src/server/services/repositoryService.js
const validUrl = data.url.match(
/^(https?://)(github.com|gitlab.com|bitbucket.org|your-domain.tld)/[^/]+/[^/]+$/
);
if (!validUrl) {
throw new Error('Invalid repository URL. Supported: GitHub, GitLab, Bitbucket, etc.');
}
💡 Why is this useful?
This would make it possible to have the repo on your own git server in case of downtime or for security reasons.
@michelroegl-brunner commented on GitHub (Dec 13, 2025):
Sure, i can add that. But i would appreciate if you could open a pullrequest for that if you like!
@patricklind commented on GitHub (Dec 14, 2025):
I'm a noob at coding.