Serverless Apps with FastAPI
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Bosko Savic 370357a96f set up app skeleton 1 рік тому
tasks/services/tasks_api set up app skeleton 1 рік тому
.gitignore create task_api service 1 рік тому
README.md Update README.md 1 рік тому

README.md

serverless-fastapi

Serverless Apps with FastAPI

Installing Poetry

Poetry is a Python package manager that simplifies dependency management and project packaging. Follow these steps to install Poetry.

Step 1: Install Poetry
Installation (Unix/Linux/macOS)

curl -sSL https://install.python-poetry.org | python -

Installation (Windows PowerShell)

(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -

Step 2: Add poetry executable to the PATH variable

$Env:Path += ";C:\Users\bosko.savic\AppData\Roaming\Python\Scripts"; setx PATH "$Env:Path"

Step 3: Verify installation

poetry --version