├── .gitignore ├── README.md ├── Vagrantfile ├── index.js ├── package.json ├── provision └── setup.sh ├── public └── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ └── styles.css └── views ├── error.hbs ├── index.hbs ├── layouts └── default.hbs └── result.hbs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/Vagrantfile -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /provision/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/provision/setup.sh -------------------------------------------------------------------------------- /public/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/public/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /views/error.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/views/error.hbs -------------------------------------------------------------------------------- /views/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/views/index.hbs -------------------------------------------------------------------------------- /views/layouts/default.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/views/layouts/default.hbs -------------------------------------------------------------------------------- /views/result.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/face-detection-nodejs/HEAD/views/result.hbs --------------------------------------------------------------------------------