Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ivanlugo1631/e-commerce
Microservice of an E-commerce
https://github.com/ivanlugo1631/e-commerce
docker fakestoreapi fastapi gcp-cloud-build postgresql supabase
Last synced: 19 days ago
JSON representation
Microservice of an E-commerce
- Host: GitHub
- URL: https://github.com/ivanlugo1631/e-commerce
- Owner: IvanLugo1631
- Created: 2024-10-12T22:54:59.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-13T16:49:23.000Z (3 months ago)
- Last Synced: 2025-01-21T09:12:03.058Z (19 days ago)
- Topics: docker, fakestoreapi, fastapi, gcp-cloud-build, postgresql, supabase
- Language: Python
- Homepage: https://e-commerce-170647227516.us-central1.run.app/docs
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ecommerce App - DEMO
## Description
This is an ecommerce app built with FastAPI. It allows users to browse and purchase products online. All information is found in there to make it clear how it works.## Installation
To download and install the app, follow these steps:1. Clone the repository:
```bash
git clone https://github.com/your-username/ecommerce-app.git
```2. Navigate to the project directory:
```bash# Ecommerce App## Description
This is an ecommerce app built with FastAPI. It allows users to browse and purchase products online.## Installation
To download and install the app, follow these steps:1. Clone the repository:
```bash
git clone https://github.com/your-username/ecommerce-app.git
```2. Navigate to the project directory:
```bash
cd ecommerce-app
```3. Create a virtual environment:
```bash
python -m venv venv
```4. Activate the virtual environment:
- For Windows:
```bash
venv\Scripts\activate
```
- For macOS and Linux:
```bash
source venv/bin/activate
```5. Install the dependencies:
```bash
pip install -r requirements.txt
```6. Run the app:
```bash
uvicorn main:app --reload
``