219dcc78bd
Agora a emissão e renovação de certificado é automática.
32 lines
430 B
Go
32 lines
430 B
Go
package tui
|
|
|
|
type step int
|
|
|
|
const (
|
|
// Docker Validation
|
|
StepCheckDocker step = iota
|
|
StepDockerInstall
|
|
|
|
// Image Fetching
|
|
StepDockerLogin
|
|
StepDownloadImage
|
|
|
|
// IP Stuff
|
|
StepIPQuestion
|
|
StepWireguardConfig
|
|
StepGenerateWireguardFile
|
|
StepDownloadWireguard
|
|
StepRunWireguard
|
|
|
|
// Docker Config
|
|
StepAppConfig
|
|
StepServerConfig
|
|
StepDatabaseConfig
|
|
StepCertConfig
|
|
|
|
// Finalizing
|
|
StepGenerateFile
|
|
StepRunDocker
|
|
StepDone
|
|
)
|