init from gitlab

This commit is contained in:
texm
2023-04-25 14:33:14 +08:00
parent 6a85a41ff0
commit c8202a5c82
281 changed files with 19861 additions and 1 deletions

28
internal/models/dokku.go Normal file
View File

@@ -0,0 +1,28 @@
package models
import "gorm.io/gorm"
type App struct {
gorm.Model
Name string
IsSetup bool
SetupMethod string
}
type AppSetupConfig struct {
gorm.Model
AppID uint
DeployBranch string
RepoURL string
RepoGitRef string
Image string
}
type Service struct {
gorm.Model
Name string
Type string
BackupAuthSet bool
BackupEncryptionSet bool
BackupBucket string
}