Skip to content

Commit 151e3b4

Browse files
authored
zero-234 Image Hosting Support (#274)
https://app.zenhub.com/workspaces/commit-zero-5da8decc7046a60001c6db44/issues/commitdev/zero/234 Adds new selectable backend stack with NodeJS support.
1 parent 00c9dfc commit 151e3b4

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ go 1.13
55
require (
66
github.com/aws/aws-sdk-go v1.30.12
77
github.com/coreos/go-semver v0.2.0
8+
github.com/gabriel-vasile/mimetype v1.1.1
89
github.com/google/go-cmp v0.3.1
910
github.com/google/uuid v1.1.1
1011
github.com/hashicorp/go-getter v1.4.2-0.20200106182914-9813cbd4eb02
@@ -28,6 +29,5 @@ require (
2829
golang.org/x/sys v0.0.0-20200602225109-6fdc65e7d980 // indirect
2930
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
3031
gopkg.in/yaml.v2 v2.2.2
31-
github.com/gabriel-vasile/mimetype v1.1.1
3232

3333
)

internal/registry/registry.go

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ func GetRegistry() Registry {
1818
"github.com/commitdev/zero-deployable-react-frontend",
1919
},
2020
},
21+
{
22+
"EKS + NodeJS + React + Gatsby",
23+
[]string{
24+
"github.com/commitdev/zero-aws-eks-stack",
25+
"github.com/commitdev/zero-deployable-landing-page",
26+
"github.com/commitdev/zero-deployable-node-backend",
27+
"github.com/commitdev/zero-deployable-react-frontend",
28+
},
29+
},
2130
{
2231
"Custom", []string{},
2332
},

0 commit comments

Comments
 (0)