This guide will walk through the process of developing a FASTAPI and deploying to an AWS EC2 instance with a custom domain and SSL/HTTPS certification.
Create Virtual Environment
mkdir fastapi
cd fastapi
python3 -m venv env
source env/bin/activate
# Create a new service file:
sudo nano /etc/systemd/system/fastapi.service
# Add the following to the new file:
[Unit]
Description=FastAPI
After=multi-user.target
[Service]
Type=simple
Restart=always
restartSec=5s
ExecStart=/home/ubuntu/folder-name/env/bin/uvicorn /home/ubuntu/folder-name/main:app --reload --port 8000 --host 0.0.0.0 >StandardOutput=append:/home/ubuntu/logs/fastapi.log
StandardError=append:/home/ubuntu/logs/fastapi.log
[Install]
WantedBy=multi-user.target
# Close Nano
^X
y
[Enter]
# Refresh services
sudo systemctl daemon-reload
# Enable service (auto-launch e.g. persist when instance is restarted)
sudo systemctl enable fastapi.service
# Start service
sudo systemctl start fastapi.service
[Optional] Create a Monitor with Monit
# Create a new Monit file:
sudo nano /etc/monit/conf.d/fastapi.conf
# Add the following to the new file:
check process fastapi.service
matching "fastapi.service"
start program = "/bin/systemctl start fastapi.service"
stop program = "/bin/systemctl stop fastapi.service"
if not exists then alert
set log /var/log/fastapi.log
# Reload
sudo monit reload
# Restart Monit
sudo service monit restart
Websockets
from fastapi import FastAPI, WebSocket
import random
# Create application
app = FastAPI(title='WebSocket Example')
@app.websocket("/ws")
async def websocket_endpoint(websocket: WebSocket):
print('Accepting client connection...')
await websocket.accept()
while True:
try:
# Wait for any message from the client
await websocket.receive_text()
# Send message to the client
resp = {'value': random.uniform(0, 1)}
await websocket.send_json(resp)
except Exception as e:
print('error:', e)
break
print('Bye..')