Flask & Stripe - Open-Source Mini eCommerce

Open-source mini eCommerce project that loads the products from JSON files saved in the templates directory (no database required) - Bootstrap 5 design is used for styling.

Flask & Stripe - mini Ecommerce Starter (open-source)
Flask & Stripe - mini Ecommerce Starter (open-source)

Hello! 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!

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
👉 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>

Stripe secrets are provided by the Stripe platform.

👉 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)
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)."
}
Flask & Stripe - Featured Product Definition

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

Flask & Stripe - Featured Product Section.
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)
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
Flask & Stripe - Mini eCommerce Product

🚀 PROMO

In case you're a junior developer or know one, this PROMO Bundle crafted, and Discounted with 85% by Creative-Tim might be useful. The package includes a rock-solid collection of premium assets (Kits & Dashboards) that can be used to build eye-catching portfolios and web apps in no time.

👉 Junior PROMO Bundle - Kits &
Promo Bundle for Junior Developers - By Creative-Tim
Promo Bundle for Junior Developers - By Creative-Tim