Skip to content

Roman505050/FastAPI-Feedback

Repository files navigation

FastAPI icon

Sending Feedback - FastAPI APP

This is a FastAPI project built using FastAPI, which provides fast development and high performance.

Getting Started

First, start the development server:

uvicorn src.main:app --reload --host 0.0.0.0 --port 8000

Open http://localhost:8000 in your browser to view the result. There you will be able to see the main page of the site.

You can start editing the code in the project files. The server will automatically reboot when the changes are saved.

Running in Docker

First, build the image:

docker-compose build

Then, start the container:

docker-compose up

Open http://localhost:8000 in your browser to view the result. There you will be able to see the main page of the site.

API documentation

FastAPI provides automatically generated documentation for your API. You can open http://localhost:8000/docs to see the available API paths and their parameters.

Learn More

For more information about FastAPI, visit the following resources:

Deployment

A quick way to deploy your FastAPI application is to use the Vercel Platform from the creators of Next.js.

Check out the FastAPI deployment documentation for more details.