> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shuttle.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Frequently Asked Questions

> Learn about the most frequently asked questions from Shuttle users.

This section is aimed at collecting common questions users have to provide documented answers.

<AccordionGroup>
  <Accordion title="How secure is Shuttle?">
    We deploy every project in its own AWS Fargate VM.
    This gives you safe isolation from other users,
    and also across all the projects that are owned by your account.
  </Accordion>

  <Accordion title="What happens when I deploy to Shuttle?">
    Your code is built and hosted on our servers. The first time you introduce additional resources in your code, like the first time you use a database, we will add that resource to your project and wire it automatically to your deployment.
    Read about what happens to deployment files [here](/docs/files).
  </Accordion>

  <Accordion title="Which version of Rust will my project be compiled with?">
    See [Deployment environment](/docs/deployment-environment).
  </Accordion>

  <Accordion title="Can I use frontend frameworks with Shuttle?">
    Of course! When you deploy a project on Shuttle, your app becomes available at a public URL.

    With this, you can build a server that serves pretty much any frontend project.
    For details on how to serve static files with Shuttle, check out our [Deployment files docs](/docs/files).

    You can also just use it for an API, and host your frontend on any of the common frontend hosting solutions (Vercel, Netlify, etc), you just have to make your API calls to the URL of your project, and you're up.

    For a tutorial on how to build and deploy a simple full-stack app using Next.js & Rust, check out this tutorial: [Deploying a NextJS frontend with Rust, in one go](https://joshmo.hashnode.dev/deploying-a-nextjs-front-end-with-a-rust-api-in-one-go)
  </Accordion>

  <Accordion title="Can I implement my own custom service for Shuttle?">
    Absolutely! And it's quite easy. Check out this section of our docs for the steps to do so: [Custom Services](/templates/tutorials/custom-service)
  </Accordion>

  <Accordion title="Can I use SeaORM with Shuttle?">
    Yes, you can create a SeaORM connection from the sqlx pool Shuttle passes to you when you provision a SQL database. You can take a look at the example [here](https://github.com/shuttle-hq/shuttle/issues/179#issuecomment-1203536025).
  </Accordion>

  <Accordion title="Where geographically are deployments hosted?">
    Currently, all deployments are in the AWS eu-west-2 region (London).
    We do plan to support multiple regions in the future.
  </Accordion>

  <Accordion title="Can I self-host Shuttle?">
    See [this issue](https://github.com/shuttle-hq/shuttle/issues/1584) for the latest status and discussion on this topic.
  </Accordion>
</AccordionGroup>
