To deploy a FastAPI application on Hostman, go to the App platform section and click Create.
Go to the Backend tab and select Python → FastAPI.
The App Platform uses Python 3.8.
You can connect a repository:
From your GitHub, GitLab, or BitBucket account. Click on the platform name, log in and select the desired repository. If you are already logged in, Hostman will immediately show the available repositories.
By URL, providing a link to a repository created on any platform. Click Connect the repository via URL and enter the Git URL of the repository. If the repository is private, also enter the access details.
Read more about connecting repositories here.
If you want to select a specific commit manually, disable this option.
Your FastAPI application must run on a separate cloud server. Select the region where the server should be located and its configuration.
You can always upgrade your server later, however, downgrading will not be possible.
The App Platform will automatically determine the build and start commands for your project, so in most cases you can leave these parameters unchanged. We will also install the dependencies defined in the requirements.txt
file, if it exists. The App Platform uses Python 3.8.
If your project requires additional modules, you can specify your own build command or several, combining them using &&
. For example, if you need to install specific drivers, add to the build command:
apt install <package name>
You can also set variables if required.
The start command will be:
uvicorn main:app --host 0.0.0.0
Make sure that the project initialization file is named main.py
.
You will be able to change any of these settings later and redeploy the app with the new parameters.
Here you can specify a name and a comment for your application to be displayed in the Hostman dashboard. You can also select a project to add the app to.
These settings can also be changed later.
Click Start Deploy. Once the process starts, you will see the deployment log on the Deploy tab.
The deploy log contains all the necessary information to solve possible issues. If something goes wrong, for example, due to errors in the code, the deploy log will display the notification about it specifying the cause of the problem.
When you first deploy a project, the server installation may take some time. Once the process is completed, the application status will be updated, and you will also see a message about this in the log.
All done!
You can find the application's IP address and the technical domain linked to the app in the Dashboard tab. The application will be available on port 443; port 80 is also open.
To link your own domain to the app, follow this guide.
In the future, the App platform will monitor updates in the repository and, if automatic deployment is enabled, automatically rebuild the project with new changes.