├── .gitIgnore ├── frontend ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── Card.jsx │ ├── Home.jsx │ ├── PaymentSuccess.jsx │ └── index.js └── server ├── app.js ├── config ├── config.env └── database.js ├── controllers └── paymentController.js ├── models └── paymentModel.js ├── package-lock.json ├── package.json ├── routes └── paymentRoutes.js └── server.js /.gitIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/.gitIgnore -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/src/Card.jsx -------------------------------------------------------------------------------- /frontend/src/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/src/Home.jsx -------------------------------------------------------------------------------- /frontend/src/PaymentSuccess.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/src/PaymentSuccess.jsx -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/app.js -------------------------------------------------------------------------------- /server/config/config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/config/config.env -------------------------------------------------------------------------------- /server/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/config/database.js -------------------------------------------------------------------------------- /server/controllers/paymentController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/controllers/paymentController.js -------------------------------------------------------------------------------- /server/models/paymentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/models/paymentModel.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/paymentRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/routes/paymentRoutes.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meabhisingh/RazorPayTutorial/HEAD/server/server.js --------------------------------------------------------------------------------