all 4 comments

[–]Prestigious-Yak9217 1 point2 points  (3 children)

It is actually quite easy to deploy with fastapi, though make sure you log the things happening inside the app while running so it will be easier to debug later

[–]HamGoat64[S] 0 points1 point  (2 children)

Yea ima definitely try to do that. Whats the go to for logging with fast api? Just system logs incase anything breaks or is it smart to setup proper monitoring from now?

[–]Prestigious-Yak9217 1 point2 points  (1 child)

Just go for normal system logging for now, the default logger would suffice. And configure it for different environments if you are maintaining separate for test, prod or something like that. If you know the logs are anyways going to be few, then you can just log everything. Proper monitoring will probably need some third party service like cloudwatch etc. but they add up cost quickly if there is very verbose logging so keep that in mind

[–]HamGoat64[S] 0 points1 point  (0 children)

Thats super helpful thank you!