-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGitPodYml.hs
33 lines (28 loc) · 1.06 KB
/
GitPodYml.hs
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
-- | Copyright : (c) Crown Copyright GCHQ
module Bootstrap.Data.Bootstrappable.GitPodYml (GitPodYml, gitPodYmlFor) where
import Bootstrap.Data.Bootstrappable
( Bootstrappable
( bootstrapContent,
bootstrapName,
bootstrapReason
),
bootstrapContentYaml,
)
import Bootstrap.Data.ProjectType (ProjectType)
import Bootstrap.Data.VSCodeExtension (vsCodeExtensionsFor)
import Data.Aeson (KeyValue ((.=)), ToJSON (toJSON))
import qualified Data.Aeson as Aeson
import Data.Aeson.Types (emptyArray)
newtype GitPodYml = GitPodYml ProjectType
instance Bootstrappable GitPodYml where
bootstrapName = const ".gitpod.yml"
bootstrapReason = const "This overrides GitPod's automated tasks; they are not needed."
bootstrapContent = pure . Right . bootstrapContentYaml
instance ToJSON GitPodYml where
toJSON (GitPodYml projectType) =
Aeson.object
[ "tasks" .= emptyArray,
"vscode" .= Aeson.object ["extensions" .= toJSON (vsCodeExtensionsFor projectType)]
]
gitPodYmlFor :: ProjectType -> Maybe GitPodYml
gitPodYmlFor = Just . GitPodYml