DEV Community

Cover image for Flask & Stripe - Open-Source Mini eCommerce
Sm0ke
Sm0ke

Posted on • Updated on • Originally published at blog.appseed.us

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/ecommerce-flask-stripe.git
$ cd ecommerce-flask-stripe
Enter fullscreen mode Exit fullscreen mode

👉 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>
Enter fullscreen mode Exit fullscreen mode

👉 Step #3 - Start the APP in Docker

$ docker-compose up --build 
Enter fullscreen mode Exit fullscreen mode

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)."
}
Enter fullscreen mode Exit fullscreen mode

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:

Top comments (6)

Collapse
 
crearesite profile image
WebsiteMarket

Nice & Simple

Collapse
 
sm0ke profile image
Sm0ke

🚀🚀

Collapse
 
uithemes profile image
ui-themes

Thanks for sharing

Collapse
 
sm0ke profile image
Sm0ke

🚀🚀

Collapse
 
murtazahashwani profile image
Murtaza Hashwani

Amazing, thanks for sharing this information.

Collapse
 
sm0ke profile image
Sm0ke

ty