Um projeto python simples feito com um docker para aprender os conceitos da ferramenta de empacotamento python chamada pipenv e aproveitando a oportunidade para aprender um pouco sobre FastAPI
- Fast API - Framework FastAPI, alto desempenho, fácil de aprender, rápido para codificar, pronto para produção
- Pipenv - É uma ferramenta que visa trazer o melhor de todos os mundos de embalagem (bundler, composer, npm, cargo, yarn, etc.) para o mundo Python.
- Docker - O Docker simplifica e acelera seu fluxo de trabalho, enquanto dá aos desenvolvedores a liberdade de inovar com sua escolha de ferramentas, pilhas de aplicativos e ambientes de implantação para cada projeto.
- Docker Compose - Compose é uma ferramenta para definir e executar aplicativos Docker de vários contêineres.
Para poder usar o projeto siga os passos abaixo.
$ docker-compose up -d --build # (only first)$ docker-compose up -d$ pipenv install <pacote>
$ pipenv install pytest --dev
$ pipenv lock
$ pipenv graph
$ pipenv graph --reverse
$ pipenv check
$ pipenv uninstall --all
$ pipenv uninstall --all-devEstá API contém seguintes endpoints:
GET /
GET /items/{item_id}
PUT /items/{item_id}
The MIT License (MIT)
Copyright (c) [2020] Adson Rodrigues
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Adson Rodrigues - Linkedin