├── .ebextensions └── options.config ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── package.json ├── static ├── app │ └── css │ │ └── app.css ├── bootstrap │ ├── LICENSE │ ├── css │ │ ├── jumbotron-narrow.css │ │ └── theme │ │ │ ├── amelia │ │ │ └── bootstrap.css │ │ │ ├── default │ │ │ └── bootstrap.css │ │ │ ├── flatly │ │ │ └── bootstrap.css │ │ │ ├── slate │ │ │ └── bootstrap.css │ │ │ └── united │ │ │ └── bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ └── bootstrap.min.js └── jquery │ ├── MIT-LICENSE.txt │ └── jquery-1.11.3.min.js ├── test.js └── views └── index.pug /.ebextensions/options.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/.ebextensions/options.config -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Elastic Beanstalk NodeJS application template 2 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/package.json -------------------------------------------------------------------------------- /static/app/css/app.css: -------------------------------------------------------------------------------- 1 | .jumbotron { 2 | 3 | background-color: Lime; 4 | } 5 | 6 | -------------------------------------------------------------------------------- /static/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/LICENSE -------------------------------------------------------------------------------- /static/bootstrap/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/amelia/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/theme/amelia/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/default/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/theme/default/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/flatly/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/theme/flatly/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/slate/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/theme/slate/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/united/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/css/theme/united/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /static/jquery/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/static/jquery/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/test.js -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miracleflow/aws-nodejs-eb/HEAD/views/index.pug --------------------------------------------------------------------------------