👉 FOR MORE DOCUMENTATION AND HELP CHECK WIKI PAGE
- Add Payment Content Type
- Add Razorpay Payment Webhook.
- Add Service for generating payment link
- Add this to ./config/plugins file.
'razorpay': {
enabled: true,
resolve: './src/plugins/razorpay'
},
GOTO your project root folder and type
cd src/plugins
git clone https://github.com/ashesvats/strapi-razorpay razorpay
yarn
yarn build
This will generate a dist folder with compiled javascript code.
open src/config/plugins.ts file and add these lines to enable plugin.
'razorpay': {
enabled: true,
resolve: './src/plugins/razorpay'
},
In the project root folder run
yarn develop --watch-admin
GOTO plugin root folder src/plugins/razorpay
yarn develop
this will listen to change in the plugin directory and compile it to typescript.