-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
67 lines (47 loc) · 1.17 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package main
import (
"fmt"
"io/ioutil"
"os"
)
var URL = "https://github.com/Disploy/create-disploy-app/archive/refs/heads/main.zip"
var project string
func main() {
inputModel := InputModel()
if m, ok := inputModel.(InputStruct); ok && m.textInput.Value() != "" {
project = m.textInput.Value()
}
fmt.Print("> Downloading list of templates...\n\n")
err := DownloadFile(".disploy.zip", URL)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
err = UnzipFile(".disploy.zip", ".disploy")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
files, err := ioutil.ReadDir(".disploy/create-disploy-app-main/assets")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
for _, f := range files {
// read the readme.md file and get the first heading
readme, err := ioutil.ReadFile(".disploy/create-disploy-app-main/assets/" + f.Name() + "/README.md")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
heading := GetFirstHeading(string(readme))
Choices = append(Choices, Template{
Name: heading,
Path: f.Name(),
})
}
choiceModel := ChoiceModel()
if m, ok := choiceModel.(OptionStruct); ok && m.choice.Path != "" {
Copy(m.choice.Path, project)
}
}