| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Install Python 3 and pip3 (If not already installed) in your machine.
git clone <repo-url> cd fastapi-starter
python3 -m venv venv source venv/bin/activate deactivate
python3 -m venv venv .\venv\Scripts\Activate.ps1 deactivate
pip3 install -r requirements.txt
pip3 freeze > requirements.txt
alembic init alembic alembic revision --autogenerate -m "related message" alembic upgrade head
python3 -m app.main [ OR ] uvicorn app.main:app --reload --port 9001 [ OR ] docker compose up --build -d docker compose down docker ps docker logs fast_openai
After running application, navigate to /redoc, can download & import to postman!
| Back | FazBrowse Home | New Git URL |