Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vikas-ukani/ecommerce-fastapi
An Ecommerce application backend build in Fast API.
https://github.com/vikas-ukani/ecommerce-fastapi
Last synced: about 1 month ago
JSON representation
An Ecommerce application backend build in Fast API.
- Host: GitHub
- URL: https://github.com/vikas-ukani/ecommerce-fastapi
- Owner: vikas-ukani
- Created: 2024-01-28T07:53:26.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-07-08T09:29:00.000Z (6 months ago)
- Last Synced: 2024-07-08T11:53:24.209Z (6 months ago)
- Language: Python
- Homepage: https://ecommerce-fastapi.onrender.com/docs
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FastAPI framework, high performance, easy to learn, fast to code, ready for production## Installation
### Create your vertual environment
```bash
$ python -m venv env
```- Activate vertual environment
```bash
$ source env/bin/activate
```### Install dependencies from requirement.txt file.
```bash
pip install -r requirments.txt
```### Run server
```bash
python3 main.py
```---
## Docker
### Build Docker
```bash
docker build -t fast-commerce .
``````bash
docker run fast-commerce
```### Interactive API docs
Now go to http://127.0.0.1:8000/docs.
You will see the automatic interactive API documentation (provided by Swagger UI):
![Swagger UI](https://fastapi.tiangolo.com/img/index/index-01-swagger-ui-simple.png)