Skip to content

Commit 0cde292

Browse files
Add Readme
1 parent f8c9e7e commit 0cde292

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Node.js Stripe Shopping Cart
2+
3+
In this repository you will find all the code for setting up Stripe payments with a shopping cart. The HTML and CSS for this project is from my free Introduction to Web Development course. The code for that course can be found [here](https://github.com/WebDevSimplified/Introduction-to-Web-Development) and the video walk-through can be found [here](https://www.youtube.com/watch?v=HfTXHrWMGVY&list=PLZlA0Gpn_vH-cEDOofOujFIknfZZpIk3a).
4+
5+
There is also a full video walk-through of this shopping cart available [here](https://youtu.be/mI_-1tbIXQI).

server.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ if (process.env.NODE_ENV !== 'production') {
55
const stripeSecretKey = process.env.STRIPE_SECRET_KEY
66
const stripePublicKey = process.env.STRIPE_PUBLIC_KEY
77

8-
console.log(stripeSecretKey, stripePublicKey)
9-
108
const express = require('express')
119
const app = express()
1210
const fs = require('fs')

0 commit comments

Comments
 (0)