Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/eduardosampaio/fast-api-cotacao


https://github.com/eduardosampaio/fast-api-cotacao

Last synced: 20 days ago
JSON representation

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

```