Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eduardosampaio/fast-api-cotacao
https://github.com/eduardosampaio/fast-api-cotacao
Last synced: 20 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/eduardosampaio/fast-api-cotacao
- Owner: EduardoSampaio
- Created: 2022-09-27T02:10:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-27T02:14:03.000Z (about 2 years ago)
- Last Synced: 2023-09-30T03:33:41.569Z (about 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Criar ambiente
```
python3 -m venv venv'## Criar arquivo requirments
pip freeze > requirements.txt## Instalar Dependencias
pip3 install -r requirements.txt## Entrando ambiente venv
source venv/bin/activate# Utilizando Docker
## Build Image
docker build --tag api-cotacao .## Run Docker
docker run -d --name api-cotacao -p 80:80 api-cotacao```