# Astro

Learn how to deploy Astro apps with Hatchbox

If `astro` is detected in `package.json`, Hatchbox will build the application:

```
npm run build
mv public public-original &amp;&amp; mv dist public
```

## SSR

For Astro apps that use SSR with Node, you can add a Process to your app with the following command.

```
node ./dist/server/entry.mjs
```
