Skip to content

dalmofelipe/fast

Repository files navigation

FastAPI 101

Sistema de gestão, autenticação e permissionamento de usuários com FastAPI.
Aplicativo experimental com finalidade de aprender o framework!

PyENV | Poetry | Typer CLI | FastAPI | SQLModel | CSS Flex | CSS Grid

Configurando Ambiente

Definir versão do Python com PyENV

$ pyenv install --list
$ pyenv install 3.11.4
$ pyenv global 3.11.4
$ pyenv shell 3.11.4

Clonar projeto

$ git clone https://github.com/dalmofelipe/FastApi101.git

Iniciar shell poetry

$ cd FastApi101
$ poetry shell

Instalar dependências do pyproject.toml

$ poetry install

Executando o Projeto

$ fast runserver

O servidor ouvirá a porta 8000 em http://localhost:8000

A porta pode ser modificada por uma variavel de ambiente

ex. Linux: export PORT=3333
ex. Windows: $env:PORT="123123"

Acesse a ajuda com os comandos da CLI:

$ fast --help
$ fast runserver --help