@@ -39,6 +39,7 @@ The following stacks are currently supported
3939- Django
4040- React JS
4141- Node JS
42+ - Next JS
4243- PHP
4344- Static HTML
4445
@@ -103,6 +104,9 @@ sh install.sh python /path/to/django/project
103104# or for a reactjs project
104105sh install.sh reactjs /path/to/reactjs/project
105106
107+ # or for a nextjs project
108+ sh install.sh nextjs /path/to/nextjs/project
109+
106110# or for a node project
107111sh install.sh node /path/to/node/project
108112
@@ -130,6 +134,9 @@ deploy --install python /path/to/django/project
130134# or for a reactjs project
131135deploy --install reactjs /path/to/reactjs/project
132136
137+ # or for a nextjs project
138+ deploy --install nextjs /path/to/nextjs/project
139+
133140# or for a node project
134141deploy --install node /path/to/node/project
135142
@@ -188,7 +195,7 @@ It can also use the commented out optional files that are listed, but will work
188195All projects must have the following vars defined (in app-config.sh or config.sh) so that the relevant steps are executed.
189196
190197``` bash
191- # The project type. Currently supported options are: java, rails, python, node, and reactjs
198+ # The project type. Currently supported options are: java, rails, python, node, reactjs and nextjs
192199TYPE=rails
193200# The name that will be used to label the app that is being deployed, commonly the hostname where the service is made available is used
194201SERVICE_NAME=service.com
@@ -294,6 +301,8 @@ sh tests/java.sh
294301sh tests/rails.sh
295302# Test React JS deployment
296303sh tests/reactjs.sh
304+ # Test Next JS deployment
305+ sh tests/nextjs.sh
297306# Test Django deployment
298307sh tests/django.sh
299308# Test Static HTML and PHP website deployment
@@ -361,6 +370,8 @@ Currently allowed values:
361370
362371- ` reactjs `
363372
373+ - ` nextjs `
374+
364375- ` html ` - for static HTML sites or simple PHP sites
365376
366377### ` BUILD `
@@ -371,7 +382,7 @@ Currently allowed values:
371382
372383- ` mvnw ` - for java projects
373384
374- - ` npm ` - for reactjs projects
385+ - ` npm ` - for reactjs and nextjs projects
375386
376387### ` FORMAT `
377388
@@ -389,6 +400,8 @@ Currently allowed values:
389400
390401- ` reactjs ` - for reactjs projects
391402
403+ - ` nextjs ` - for nextjs projects
404+
392405- ` static ` - for static HTML sites or simple PHP sites
393406
394407### ` REPO `
0 commit comments