Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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