## Description When following the documentation to run the E Commerce template locally, you are asked to run `yarn stripe:webhooks` to work with webhooks. However, when checking out your cart and a webhook is triggered, your terminal receives the following error: ``` [ERROR] Failed to POST: Post "http://localhost:8000/stripe/webhooks": dial tcp 127.0.0.1:8000: connect: connection refused ``` I believe this is because the port is wrong, and it should be port `3000`. There is no reference to a port `8000` anywhere in the code base for this template, including in the docker-compose.yml file. Making this changes allows webhook requests to be forwarded correctly: ``` --> customer.created [evt_...] <-- [200] POST http://localhost:3000/stripe/webhooks [evt_...] ``` This PR makes this small change. <!-- Please include a summary of the pull request and any related issues it fixes. Please also include relevant motivation and context. --> - [x] I have read and understand the [CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md) document in this repository. ## Type of change <!-- Please delete options that are not relevant. --> - [x] Bug fix (non-breaking change which fixes an issue) - [x] Change to the [templates](https://github.com/payloadcms/payload/tree/main/templates) directory (does not affect core functionality) ## Checklist: - [x] Existing test suite passes locally with my changes
76 lines
3.2 KiB
JSON
76 lines
3.2 KiB
JSON
{
|
|
"name": "@payloadcms/template-ecommerce",
|
|
"description": "E-commerce template for Payload",
|
|
"version": "1.0.0",
|
|
"main": "dist/server.js",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "cross-env PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts nodemon",
|
|
"stripe:webhooks": "stripe listen --forward-to localhost:3000/stripe/webhooks",
|
|
"seed": "rm -rf media && cross-env PAYLOAD_SEED=true PAYLOAD_DROP_DATABASE=true PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts ts-node src/server.ts",
|
|
"build:payload": "cross-env PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts payload build",
|
|
"build:server": "tsc --project tsconfig.server.json",
|
|
"build:next": "cross-env PAYLOAD_CONFIG_PATH=dist/payload/payload.config.js NEXT_BUILD=true node dist/server.js",
|
|
"build": "cross-env NODE_ENV=production yarn build:payload && yarn build:server && yarn copyfiles && yarn build:next",
|
|
"serve": "cross-env PAYLOAD_CONFIG_PATH=dist/payload/payload.config.js NODE_ENV=production node dist/server.js",
|
|
"eject": "yarn remove next react react-dom @next/eslint-plugin-next && ts-node eject.ts",
|
|
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,js}\" dist/",
|
|
"generate:types": "cross-env PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts payload generate:types",
|
|
"generate:graphQLSchema": "PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts payload generate:graphQLSchema",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint --fix --ext .ts,.tsx src",
|
|
"payload": "cross-env PAYLOAD_CONFIG_PATH=src/payload/payload.config.ts payload"
|
|
},
|
|
"dependencies": {
|
|
"@payloadcms/bundler-webpack": "^1.0.0",
|
|
"@payloadcms/db-mongodb": "^1.0.0",
|
|
"@payloadcms/plugin-cloud": "^3.0.0",
|
|
"@payloadcms/plugin-nested-docs": "^1.0.8",
|
|
"@payloadcms/plugin-redirects": "^1.0.0",
|
|
"@payloadcms/plugin-seo": "^1.0.10",
|
|
"@payloadcms/plugin-stripe": "^0.0.19",
|
|
"@payloadcms/richtext-slate": "^1.0.0",
|
|
"@stripe/react-stripe-js": "^1.16.3",
|
|
"@stripe/stripe-js": "^1.46.0",
|
|
"cross-env": "^7.0.3",
|
|
"dotenv": "^8.2.0",
|
|
"escape-html": "^1.0.3",
|
|
"express": "^4.19.2",
|
|
"next": "13.5.2",
|
|
"payload": "^2.0.7",
|
|
"payload-admin-bar": "^1.0.6",
|
|
"qs": "6.11.2",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "7.45.4",
|
|
"react-router-dom": "5.3.4",
|
|
"stripe": "^10.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@next/eslint-plugin-next": "^13.1.6",
|
|
"@payloadcms/eslint-config": "^0.0.1",
|
|
"@swc/core": "1.6.1",
|
|
"@types/escape-html": "^1.0.2",
|
|
"@types/express": "^4.17.9",
|
|
"@types/node": "18.11.3",
|
|
"@types/qs": "^6.9.8",
|
|
"@types/react": "18.0.21",
|
|
"@typescript-eslint/eslint-plugin": "^5.51.0",
|
|
"@typescript-eslint/parser": "^5.51.0",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8.19.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-alias": "^1.1.2",
|
|
"eslint-plugin-filenames": "^1.3.2",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-simple-import-sort": "^10.0.0",
|
|
"nodemon": "^2.0.6",
|
|
"prettier": "^2.7.1",
|
|
"slate": "0.91.4",
|
|
"ts-node": "10.9.1",
|
|
"typescript": "^4.8.4"
|
|
}
|
|
}
|