Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 6, 2022 05:56 am GMT

Flask & Stripe - Open-Source Mini eCommerce

Hello Coders!

This article presents a Mini eCommerce project powered by Flask and Stripe. The sources can be found on GitHub and the permissive MIT License allows you to copy/incorporate the code into other projects or simply use it as it is. For newcomers, Flask is a leading backend framework actively supported and versioned and Stripe is a popular payments processor.

Thanks for Reading!

Flask & Stripe - Sample product page.

The project has no database, or authentication, and loads the product definitions from separate JSON files using minimal routing logic. Once the product information is loaded the pages are generated on top of a modern Bootstrap 5 design.

The fastest way to get the project up & running locally is to follow up on this simple set up:

Step #1 - Clone the project from the public repository:

$ git clone https://github.com/app-generator/sample-flask-stripe.git$ cd sample-flask-stripe

Step #2 - Add STRIPE secrets in Dockerfile

# Stripe Secrets ENV STRIPE_SECRET_KEY      <YOUR_STRIPE_SECRET_KEY>ENV STRIPE_PUBLISHABLE_KEY <YOUR_STRIPE_PUBLISHABLE_KEY>

Step #3 - Start the APP in Docker

$ docker-compose up --build 

Visit http://localhost:5085 in your browser. The app should be up & running.

Flask & Stripe - HOMEpage (open-source).

How it Works

The project loads a minimal configuration from the .env file and builds the pages after the templates/products directory is scanned. The products index contains all products plus a featured product presented at top of the page.

The above image is generated from this simple structure saved on the disk:

Flask & Stripe - Products Definitions on Disk

The definition for each product is a minimal JSON file. Here is the information that defines the featured product:

{    "name": "Nike Dynamo Go FlyEase",    "price": 49,    "currency": "usd",    "info": "Baby/Toddler Easy On/Off Shoes",    "short_description": "A workhorse built to help power ... (truncated)",    "full_description": "Easy, snug and built for any-time play the Nike Dynamo Go FlyEase ... (truncated)."}

Using this minimal information, the app will generate the top section of the products page:

Flask & Stripe - Featured Product Section.

How to define a new product

A new product can be defined in less than 1 minute using the guidelines presented in the README file:

  • Navigate to app/templates/products directory
  • Create a new JSON file from an existing one
  • Edit the product: name, price, full description
  • Create Media Files: navigate to app/static/products
  • Create a directory using the same name as for JSON file
  • Create card.jpg: 500 x 335 (pixels)
  • Create cover.jpg: 2100 x 1400 (pixels)

At this point, if we refresh the HOMEpage the new product is ready to be used.

Here is a sample product page generated for Air ZOOM Pegasus, using assets loaded from here:

Flask & Stripe - Generated Product Page (free product)

Video Presentation

All the above points are presented step-by-step in a short video published on yTube. Here is the material transcript:

  • Clone the project
  • Start the app using Docker
  • Access the pages, visualize the products
  • Complete a purchase
  • Cancel a purchase
  • Start the project using a manual build

Thanks for reading! For more resources and support, please access:


Original Link: https://dev.to/sm0ke/flask-stripe-open-source-mini-ecommerce-34jj

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To