Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bernardofernandezz authored Nov 17, 2024
1 parent b9aa404 commit bb7d9b7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ Uma aplicação FastAPI que converte arquivos JSON para Excel
### 2. Crie um ambiente virtual

# Windows
python -m venv venv
venv\Scripts\activate
- python -m venv venv
- venv\Scripts\activate

# Linux/Mac
python3 -m venv venv
source venv/bin/activate
- python3 -m venv venv
- source venv/bin/activate

### 3. Instale as dependências

pip install fastapi uvicorn pandas openpyxl jinja2 python-multipart
- pip install fastapi uvicorn pandas openpyxl jinja2 python-multipart

### 4. Execute o servidor (escolha uma das opções)

# Opção 1 - Usando python
python main.py
- python main.py

# Opção 2 - Usando uvicorn
uvicorn main:app --reload
- uvicorn main:app --reload

### 5. Acesse a aplicação
- Interface web: http://localhost:8000
Expand Down

0 comments on commit bb7d9b7

Please sign in to comment.