You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print(f"Request failed with status code {response.status_code}.")
119
+
```
120
+
121
+
## Docker
122
+
Hosting a FastAPI server can also be done by building a docker file as from console:
123
+
```bash
124
+
docker build -t fastanpr-app .
125
+
docker run -p 8000:8000 fastanpr-app
126
+
```
81
127
82
128
## Licence
83
129
This project incorporates the YOLOv8 model from Ultralytics, which is licensed under the AGPL-3.0 license. As such, this project is also distributed under the [GNU Affero General Public License v3.0 (AGPL-3.0)](LICENSE) to comply with the licensing requirements.
0 commit comments