16 lines
306 B
Go
16 lines
306 B
Go
package recipe
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"coopcloud.tech/abra/pkg/envfile"
|
|
)
|
|
|
|
func (r Recipe2) SampleEnv() (map[string]string, error) {
|
|
sampleEnv, err := envfile.ReadEnv(r.SampleEnvPath)
|
|
if err != nil {
|
|
return sampleEnv, fmt.Errorf("unable to discover .env.sample for %s", r.Name)
|
|
}
|
|
return sampleEnv, nil
|
|
}
|