├── .gitignore ├── README.md ├── app ├── controllers │ └── cabbie-survey.controller.js ├── models │ └── cabbie-survey.model.js └── router.js ├── config └── database.config.js ├── docker-compose.yml ├── images ├── car-code.gif ├── demo.gif ├── home.png ├── postman.png ├── report.png ├── screencapture-localhost-3000-2019-10-05-19_02_13.png ├── screencapture-localhost-3000-2019-10-06-10_26_48.png └── screencapture-localhost-3001-thanks-2019-10-12-22_42_57.png ├── package.json ├── react └── sur-way-app │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── assets │ ├── canvasjs.min.js │ ├── canvasjs.react.js │ └── images │ │ ├── bg-1.jpg │ │ └── bg-2.jpg │ ├── components │ ├── ChartsComponent.js │ ├── SurveyForm.js │ ├── ThanksComponent.js │ └── layout │ │ └── Header.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── serviceWorker.js └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/cabbie-survey.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/app/controllers/cabbie-survey.controller.js -------------------------------------------------------------------------------- /app/models/cabbie-survey.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/app/models/cabbie-survey.model.js -------------------------------------------------------------------------------- /app/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/app/router.js -------------------------------------------------------------------------------- /config/database.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/config/database.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/car-code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/car-code.gif -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/home.png -------------------------------------------------------------------------------- /images/postman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/postman.png -------------------------------------------------------------------------------- /images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/report.png -------------------------------------------------------------------------------- /images/screencapture-localhost-3000-2019-10-05-19_02_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/screencapture-localhost-3000-2019-10-05-19_02_13.png -------------------------------------------------------------------------------- /images/screencapture-localhost-3000-2019-10-06-10_26_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/screencapture-localhost-3000-2019-10-06-10_26_48.png -------------------------------------------------------------------------------- /images/screencapture-localhost-3001-thanks-2019-10-12-22_42_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/images/screencapture-localhost-3001-thanks-2019-10-12-22_42_57.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/package.json -------------------------------------------------------------------------------- /react/sur-way-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/.gitignore -------------------------------------------------------------------------------- /react/sur-way-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/README.md -------------------------------------------------------------------------------- /react/sur-way-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/package-lock.json -------------------------------------------------------------------------------- /react/sur-way-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/package.json -------------------------------------------------------------------------------- /react/sur-way-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/favicon.ico -------------------------------------------------------------------------------- /react/sur-way-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/index.html -------------------------------------------------------------------------------- /react/sur-way-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/logo192.png -------------------------------------------------------------------------------- /react/sur-way-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/logo512.png -------------------------------------------------------------------------------- /react/sur-way-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/manifest.json -------------------------------------------------------------------------------- /react/sur-way-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/public/robots.txt -------------------------------------------------------------------------------- /react/sur-way-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/App.css -------------------------------------------------------------------------------- /react/sur-way-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/App.js -------------------------------------------------------------------------------- /react/sur-way-app/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/App.test.js -------------------------------------------------------------------------------- /react/sur-way-app/src/assets/canvasjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/assets/canvasjs.min.js -------------------------------------------------------------------------------- /react/sur-way-app/src/assets/canvasjs.react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/assets/canvasjs.react.js -------------------------------------------------------------------------------- /react/sur-way-app/src/assets/images/bg-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/assets/images/bg-1.jpg -------------------------------------------------------------------------------- /react/sur-way-app/src/assets/images/bg-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/assets/images/bg-2.jpg -------------------------------------------------------------------------------- /react/sur-way-app/src/components/ChartsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/components/ChartsComponent.js -------------------------------------------------------------------------------- /react/sur-way-app/src/components/SurveyForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/components/SurveyForm.js -------------------------------------------------------------------------------- /react/sur-way-app/src/components/ThanksComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/components/ThanksComponent.js -------------------------------------------------------------------------------- /react/sur-way-app/src/components/layout/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/components/layout/Header.js -------------------------------------------------------------------------------- /react/sur-way-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/index.css -------------------------------------------------------------------------------- /react/sur-way-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/index.js -------------------------------------------------------------------------------- /react/sur-way-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/logo.svg -------------------------------------------------------------------------------- /react/sur-way-app/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/react/sur-way-app/src/serviceWorker.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CT83/SurWay/HEAD/server.js --------------------------------------------------------------------------------