{"id":16175262,"url":"https://github.com/app-generator/ecommerce-fastapi-stripe-clone","last_synced_at":"2026-02-14T04:39:09.392Z","repository":{"id":100502872,"uuid":"558457458","full_name":"app-generator/ecommerce-fastapi-stripe-clone","owner":"app-generator","description":"FastAPI \u0026 Stripe Mini eCommerce","archived":false,"fork":false,"pushed_at":"2022-10-27T17:37:25.000Z","size":8974,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T06:52:16.650Z","etag":null,"topics":["appseed","fastapi","fastapi-stripe","stripe"],"latest_commit_sha":null,"homepage":"https://youtu.be/5kCE41duksk","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/app-generator.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-27T15:29:10.000Z","updated_at":"2024-08-12T06:57:56.000Z","dependencies_parsed_at":"2023-05-15T11:15:18.879Z","dependency_job_id":null,"html_url":"https://github.com/app-generator/ecommerce-fastapi-stripe-clone","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"app-generator/ecommerce-fastapi-stripe","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fecommerce-fastapi-stripe-clone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fecommerce-fastapi-stripe-clone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fecommerce-fastapi-stripe-clone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fecommerce-fastapi-stripe-clone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/ecommerce-fastapi-stripe-clone/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246642102,"owners_count":20810546,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["appseed","fastapi","fastapi-stripe","stripe"],"created_at":"2024-10-10T04:44:30.544Z","updated_at":"2026-02-14T04:39:04.373Z","avatar_url":"https://github.com/app-generator.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [FastAPI \u0026 Stripe](https://blog.appseed.us/fastapi-stripe-free-ecommerce/) `Mini eCommerce`\n\nOpen-source mini `eCommerce` project that loads the products from `JSON` files saved in the `templates directory` (no database required) and uses a decent UI for page styling - Powered by **[FastAPI \u0026 Stripe](https://blog.appseed.us/fastapi-stripe-free-ecommerce/)**.\n\u003cbr /\u003e\n\n\u003e 👉 [FastAPI \u0026 Stripe eCommerce](https://youtu.be/5kCE41duksk) - `Video Presentation`\n\n\u003cbr /\u003e\n\n### Roadmap \u0026 Features \n\n| Status | Item | info | \n| --- | --- | --- |\n| ✅ | **FastAPI** | For `backend logic` |\n| ✅ | **Stripe** | `Payment processor` |\n| ✅ | **[Soft UI Design](https://www.creative-tim.com/product/soft-ui-design-system?AFFILIATE=128200)** | (Free Version) by `Creative-Tim` |\n| ✅ | **JSON** | `Products definition` - see [sample](./src/templates/products/air-zoom-pegasus.json) |\n| ✅ | Automatic Products Discovery | Source DIR: [templates\\products](./src/templates/products) |\n| ❌ | **Deployment** | `Docker` \u0026 Pages Compression |\n| ❌ | **CI/CD** | Render Deployment Platform |\n\n\u003cbr /\u003e\n\n![FastAPI \u0026 Stripe mini eCommerce - Open-Source Starter provided by AppSeed.](https://user-images.githubusercontent.com/51070104/197350325-609fe951-fe54-4276-9380-9d403460a8d0.png)\n\n\u003cbr /\u003e\n\n## ✨ Manual Build\n\nThe process is basically the usual set up for any Python app: `environment` set up, `dependencies` install, and `bootstrap`. \n\n\u003cbr /\u003e\n\n\u003e 👉 **Step 1** - `Download the code` from the GH repository (using `GIT`) \n\n```bash\n$ git clone https://github.com/app-generator/ecommerce-fastapi-stripe.git\n$ cd ecommerce-fastapi-stripe\n```\n\n\u003cbr /\u003e\n\n\u003e 👉 **Step 2** - Rename `env.sample` to `.env` and provide the Stripe Secrets\n\n- Edit `STRIPE_SECRET_KEY` - provided by Stripe Platform\n- Edit `STRIPE_PUBLISHABLE_KEY` - provided by Stripe Platform\n\n\u003cbr /\u003e\n\n\u003e 👉 **Step 3** - `Install dependencies`\n\n```bash\n$ virtualenv env\n$ source env/bin/activate\n$ pip install -r requirements.txt\n```\n\n\u003cbr /\u003e\n\n\u003e 👉 **Step 4** - `Start the App`\n\n```bash\n$ uvicorn src.app:app --reload\n```\n\nVisit `http://localhost:8000` in your browser. For another port, use `--port 8099` directive.\n\n\u003cbr /\u003e\n\n## ✨ Create a new Product\n\n- Go to `src/templates/products` directory\n- Create a new `JSON` file with data:\n  - `name`: Used in product page \u0026 Cards\n  - `price`: Used for payment\n  - `currency`: Used for payment\n  - `info`: used in cards \n  - `short_description`: used in product page\n  - `full_description`: used in product page\n- Create Media Files\n  - Go to `src/static/products` \n  - Create a directory using the same name as for `JSON` file\n    - Create `card.jpg`: 500x335px\n    - Create `cover.jpg`: 2100x1400px\n- Start or refresh the app\n  - The new product should be listed in the `products/` page\n  - Product page is available at address:\n    - `http://localhost:8000/products/\u003cSLUG\u003e/` where the SLUG is the name of the JSON file \n  \n\u003cbr /\u003e\n\n\u003e Sample product page generated for [Air ZOOM Pegasus](./src/templates/products/air-zoom-pegasus.json), assets loaded from [here](./src/static/products/air-zoom-pegasus)\n\n\u003cbr /\u003e\n\n## ✨ Credits \u0026 Links\n\n- [FastAPI Framework](https://fastapi.tiangolo.com/) - The official website\n- [Stripe Dev Tools](https://stripe.com/docs/development) - official docs\n\n\u003cbr /\u003e\n\n---\n[FastAPI \u0026 Stripe](https://blog.appseed.us/fastapi-stripe-free-ecommerce/) `Mini eCommerce` - Free sample provided by [AppSeed](https://appseed.us).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fecommerce-fastapi-stripe-clone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Fecommerce-fastapi-stripe-clone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fecommerce-fastapi-stripe-clone/lists"}