func NewSeedStage()

in internal/fabric/stages.go [90:103]


func NewSeedStage(configPath string) *Stage {
	repo := utils.NewRepo()
	repo.SetURL(seedRepo)
	repo.SetDestination(filepath.Join(configPath, seedDst))
	repo.SetLink(
		filepath.Join(configPath, seedDir),
		filepath.Join(configPath, seedDst, seedSrc),
	)

	return &Stage{
		Type:       "seed",
		Repository: repo,
	}
}