├── .gitignore ├── .htaccess ├── README.md ├── app.js ├── deploy.sh ├── ecosystem.json ├── index.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | node_modules 3 | ssh 4 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | RedirectMatch 404 /\.git 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/app.js -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/deploy.sh -------------------------------------------------------------------------------- /ecosystem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/ecosystem.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/willrstern/example-deployment/HEAD/package.json --------------------------------------------------------------------------------