Hi. I have a general question about architecture. ...
# ask-community
b
Hi. I have a general question about architecture. I know there's repo with TF scripts for Agent on AWS, but are there any scripts for Prefect Server that could be setup on AWS so that we could use both Agent and Server on AWS without contacting Prefect Cloud?
k
For Server deployment, there are two ways, you can use
prefect server start
which uses Docker compose or you can use the helm chart. These don’t spin up the agent though (because bear in mind the agent can live anywhere). There is a community contributed docker compose repo here that might be a bit old, but some people have used it. This will spin the agent up along with the server
b
Thank you @Kevin Kho