> ## Documentation Index
> Fetch the complete documentation index at: https://ship-jskiller1404-add-ommiting-private-fields-feature.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Digital Ocean Apps

There is a simplified deployment type without Kubernetes. This type is **recommended** for most new applications because it allows you to set up infrastructure faster and doesn't require additional DevOps knowledge from the development team. You can switch to a more complex Kubernetes solution when your application will be at scale.

<Tip>
  Explore our method of deploying Ship to DigitalOcean Apps using [Infrastructure as Code](https://www.pulumi.com/what-is/what-is-infrastructure-as-code/).
  For a detailed guide, check out our [documentation on this approach](/deployment/digital-ocean-apps-iac).
</Tip>

It's a step-by-step Ship deployment guide. We will use the [Digital Ocean Apps](https://www.digitalocean.com/products/app-platform) and [GitHub Actions](https://github.com/features/actions) for automated deployment. [Mongo Atlas](https://www.mongodb.com/) and [Redis Cloud](https://redis.com/try-free/) for databases deployment, and [Cloudflare](https://www.cloudflare.com/) for DNS and SSL configuration.

You need to create [GitHub](https://github.com/), [Digital Ocean](https://www.digitalocean.com/), [CloudFlare](https://www.cloudflare.com/), [MongoDB Atlas](https://www.mongodb.com/cloud/atlas/register) and [Redis Cloud](https://redis.com/try-free/) accounts.

Also, you need [git](https://git-scm.com/) and [Node.js](https://nodejs.org/en/) if you already haven't.

<Note>
  [Migrator](/migrator) and [Scheduler](/scheduler) will run in a Docker container for API. Unlike [Kubernetes](https://github.com/docs/deployment/kubernetes/digital-ocean.md), where separate containers are used for them.
</Note>

## Setup project

First, initialize your project. Type `npx create-ship-app init` in the terminal then choose desired build type and **Digital Ocean Apps** as a cloud service provider.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/init-project.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=a8d3cdb2a50322afff948baff99dad1d" alt="Init project" width="739" height="748" data-path="images/init-project.png" />

You will have next project structure.

```shell theme={null}
/my-app
  /apps
    /web
    /api
  /.github
  ...
```

Create GitHub private repository and upload source code.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/private-repo.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=95d4bc44a59dd8174a5e45af977408bd" alt="Private repo" width="3024" height="1664" data-path="images/private-repo.png" />

```shell theme={null}
cd my-app
git remote add origin https://github.com/Oigen43/my-app.git
git branch -M main
git push -u origin main
```

## MongoDB Atlas

Navigate to [MongoDB Atlas](https://cloud.mongodb.com/), sign in to your account and create a new database.

### Database creation

1. Select the appropriate type. Dedicated for a production environment, shared for staging/demo.
2. Select provider and region. We recommend selecting the same or closest region to the DO application.
3. Select cluster tier. Free M0 Sandbox should be enough for staging/demo environments. For production environment we recommended selecting the option that supports cloud backups, M2 or higher.
4. Enter cluster name

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/mongo-create.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=c100c8528e0bd32a51d06501d300d44e" alt="Mongo cluster" width="893" height="683" data-path="images/mongo-create.png" />

### Security and connection

After cluster creation, you'll need to set up security. Select the authentication type (username and password) and create a user.

<Warning>
  Please be aware that the initial character of the generated password should be a letter. If it isn't, you'll need to create a new password.
  Failing to do this may lead to DigitalOcean parsing the `MONGO_URI` variable incorrectly.
</Warning>

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/mongo-create-password.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=c593499cbd599af00bb81e0a85e8019a" alt="Mongo setup authentication" width="859" height="665" data-path="images/mongo-create-password.png" />

Add IP addresses list, which should have access to your cluster. Add 0.0.0.0/0 IP address to allow anyone with credentials to connect.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/mongo-create-ip-list.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=9eae219bcd218cb81a4846962214a50a" alt="Mongo setup ip white list" width="798" height="585" data-path="images/mongo-create-ip-list.png" />

After database creation, go to the dashboard page and get the URI connection string by pressing the `connect` button.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/mongo-dashboard.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=ad4c8b8417672b4ea472437778728132" alt="Mongo dashboard" width="2159" height="718" data-path="images/mongo-dashboard.png" />

Select `Connect your application` option. Choose driver and mongo version, and copy connection string. Don't forget to replace `<password>` with your credentials.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/mongo-connection-string.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=05b97c58d9ba029f2eebeba33a2fa100" alt="Mongo connect dialog" width="794" height="637" data-path="images/mongo-connection-string.png" />

Save this value. It will be needed later when creating the app in Digital Ocean.

<Tip>
  Before moving to production, it's crucial to set up [MongoDB backup methods](https://www.mongodb.com/docs/manual/core/backups).

  This ensures that you can reliably restore your data in the event of unforeseen circumstances.
</Tip>

## Redis Cloud

Navigate to [Redis Cloud](https://redis.com/try-free/) and create an account. Select cloud provider and region, then press `Let's start free` to finish database creation.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/redis-creation.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=dd5fc13a011fab75f49d040819abada8" alt="Redis create database" width="953" height="581" data-path="images/redis-creation.png" />

Open database settings and get the database public endpoint and password.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/redis-public-endpoint.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=9a8b7e0b5bbb88dc81641738e58e672f" alt="Redis public endpoint" width="1601" height="923" data-path="images/redis-public-endpoint.png" />

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/Dwvni7a5iTfmtLdI/images/redis-password.png?fit=max&auto=format&n=Dwvni7a5iTfmtLdI&q=85&s=055aadf16db88d6aabfeb1b2171fdae9" alt="Redis password" width="1573" height="514" data-path="images/redis-password.png" />

Form Redis connection string using public endpoint and password `redis://:<password@<public-endpoint>`. Save this value. It will be needed later when creating the app in Digital Ocean.

## Digital Ocean

Navigate to the Digital Ocean Control Panel and select the **Apps** tab. The `Full-Stack` build type requires 2 applications. First for [Web](/web/overview) and second for [API](/api-reference/overview), [Migrator](https://github.com/docs/migrator.md), and [Scheduler](https://github.com/docs/scheduler.md) services.

### Initial step

1. Select GitHub as a service provider. You might need to grant Digital Ocean access to your GitHub account or organization.
2. Select the repository with the application.
3. Select a branch for deployment.
4. Select the source directory if the code is in a subfolder.It should `apps/web` for web application and `apps/api` for api.
5. Turn off the Autodeploy option. The Ship uses GitHub Actions for CI due to the poor support of monorepos in the Digital Ocean Apps

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-app.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=5b187ad3f1eeceea6a1313579ccdc422" alt="Create app screen" width="1213" height="1171" data-path="images/do-create-app.png" />

### Resources setup

1. Delete duplicated resources without dockerfile if you have one.
2. Select desired plan. For staging/demo environments, sufficiently selecting a basic plan for 5\$. For production, you might consider selecting a more expensive plan.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-app-step-2.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=05afe4ec8ae4aca4f74e66e9a1b1a352" alt="Create app resources" width="1219" height="781" data-path="images/do-create-app-step-2.png" />

### Environment variables

The `APP_ENV` environment variable is typically set based on the environment in which the application is running.
Its value corresponds to the specific environment, such as "development", "staging" or "production".
This variable helps the application identify its current environment and load the corresponding configuration.

For the web application, by setting the environment variable `APP_ENV`,
the application can determine the environment in which it is running and download the appropriate configuration file:

| APP\_ENV    | File             |
| ----------- | ---------------- |
| development | .env.development |
| staging     | .env.staging     |
| production  | .env.production  |

These files should contain specific configuration variables required for each environment.

In contrast, the API utilizes a single `.env` file that houses its environment-specific configuration.
This file typically contains variables like API keys, secrets, or other sensitive information.
To ensure security, it's crucial to add the `.env` file to the `.gitignore` file,
preventing it from being tracked and committed to the repository.

So just specify the environment variables that will contain the values of your secrets.
For example, if you have a secret named `API_KEY`,
create an environment variable named `API_KEY` and set the value of the corresponding secret for it

Variables, added in the `Global` section will be available to all resources within the application, while ones added in the `ship` section will be available only for that resource. Adding `MONGO_CONNECTION` in the global section allows you to use it later if you decide to set up migrator/scheduler resources

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-app-step-3.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=1af96e54af4f481f81bfbbe9fe2a32b2" alt="Create app environment variables" width="1207" height="1213" data-path="images/do-create-app-step-3.png" />

### Application name and hosted region

* \[**Optional**] Select desired application name and/or region for your application

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-app-step-4.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=6acd8e297824a71a0be9c1f0b8c8ead9" alt="Create app host" width="1223" height="760" data-path="images/do-create-app-step-4.png" />

### Review

Verify everything is correct and create a new resource.

After the application creation, you'll land on the application dashboard page. On dashboard, you can see application status, check runtime logs, track deployment status, and manage application settings.

### App Spec

Digital Ocean sets the path to Dockerfiles to the root by default. You will need to change it manually.
Navigate to Settings, expand the App spec tab and change `dockerfile_path` in the editor.

To deploy your application in a monorepo, it's essential to modify the `source_dir` parameter to the root directory.
This adjustment is necessary to ensure the correct configuration and operation of the applications within the monorepo.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-settings-app-spec.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=ceab2e91d695febc6f13f63b228f7fe7" alt="Create app review" width="2296" height="1378" data-path="images/do-settings-app-spec.png" />

## Cloudflare

Before this step you need to register a domain name, usually we already have it if not, look: [Register a new domain](https://developers.cloudflare.com/registrar/get-started/register-domain)

Navigate to your Digital ocean application and open `Settings` tab. Select `Domains` row to open domain settings and click `Add domain` button

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-domains.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=85020de3eedf30719b3f2bb924da1694" alt="Digital Ocean domains" width="1260" height="890" data-path="images/do-domains.png" />

Type your desired domain and select option `You manage your domain`

In the bottom section you'll be asked to copy CNAME alias of your digital ocean application name to record in your dns provider.
Copy that alias and leave the form (do no close it or submit).

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-new-domain.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=7d22c4534524d33d7182d74663e2a019" alt="Digital Ocean new domain" width="1008" height="921" data-path="images/do-new-domain.png" />

Navigate to [CloudFlare](https://dash.cloudflare.com/) and sign into account.

1. Go to `DNS` tab and create a new record.
2. Click `Add record`. Select type `CNAME`,  enter domain name (must be the same you entered in digital ocean settings) and paste alias into `target` field.
   Make sure `Proxy status` toggle enabled.
3. Save changes

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/bAV2JshmglZLw2nx/images/cloudflare-create-dns.png?fit=max&auto=format&n=bAV2JshmglZLw2nx&q=85&s=51001ca0103949858fa4bb279f082668" alt="Cloudflare DNS" width="1043" height="404" data-path="images/cloudflare-create-dns.png" />

Now go back to digital ocean and submit form. It usually takes about 5 minutes for digital ocean to confirm and start using your new domain.
Once domain is confirmed, application can be accessed by new address.

## GitHub Actions

You can find two github actions in the `.github/workflows` folder, responsible for triggering deployment when you push changes in your repository. If you chose frontend or backend on the initialization step, you'll have one github workflow for the selected application type.

These actions require a Digital Ocean access token and application ID. Respectively these are `DO_ACCESS_TOKEN` and `DO_API_STAGING_APP_ID`/`DO_WEB_STAGING_APP_ID`/`DO_API_PRODUCTION_APP_ID`/`DO_WEB_PRODUCTION_APP_ID`.

Navigate to digital ocean and open the **API** tab on the left sidebar.
Click **Generate new token**, select a name and set the expiration period.
Also, pick both **read** and **write** permissions for the scope.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-access-token-create.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=9d897d173431451da5a901b6623252f5" alt="Do access token create" width="1813" height="561" data-path="images/do-access-token-create.png" />

You'll see generated token in the list. Do not forget to copy the value and store it in a safe place. You won't be able to copy value after leaving the page.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-access-token-copy.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=e14d42ea55381c1b95c9103b04acba72" alt="Do access token copy" width="1809" height="637" data-path="images/do-access-token-copy.png" />

Next, navigate to the **Apps** tab in the left sidebar and open your Digital Ocean application. You can find the id of your application id in the browser address bar.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-application-id.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=ea348dcf9c2b2ab5d078543bedd10175" alt="Do application id" width="2293" height="726" data-path="images/do-application-id.png" />

Now you can add these keys to your github repository's secrets.

Navigate to the GitHub repository page, and open the **Settings** tab and these values. You have to be repository **admin** or **owner** to open this tab.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/github-secrets.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=42432217c8e05a4a7772f853eafa858c" alt="Github secrets" width="1418" height="922" data-path="images/github-secrets.png" />

Done! Application deployed and can be accessed by provided domain.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/bAV2JshmglZLw2nx/images/deployed-application.png?fit=max&auto=format&n=bAV2JshmglZLw2nx&q=85&s=0dcbfb458f3124d58129369ec9f06814" alt="Deployed application" width="1134" height="705" data-path="images/deployed-application.png" />

## Set up migrator and scheduler (Optional)

Digital Ocean Apps allows configuring additional resources within one application, which can serve as background workers and jobs, and a scheduler to run before/after the deployment process.

Navigate to your Digital Ocean application. **Make sure to select the application with API server**, open a `Create` dropdown menu in the top-right corner, and select the `Create Resources From Source Code` option.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-resource.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=4ef87146078f43c845eb24cfc672ec66" alt="Do create resource" width="1153" height="588" data-path="images/do-create-resource.png" />

1. Select a project repository, add a path to the source directory, disable auto-deploy, and press `Next`.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-resource-form.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=f5eaa66f91da13280b5197a095228b5f" alt="Create resource screen" width="900" height="1124" data-path="images/do-resource-form.png" />

2. Delete a resource without Dockerfile and edit second by clicking on the pencil icon.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-resource-step-2.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=56505fedf81e24234ba034d3056f84cb" alt="Create app resources" width="1219" height="781" data-path="images/do-create-resource-step-2.png" />

3. In the edit resource form, select `Resource Type` - `Job`, `Before every deploy`, and change the name of the resource (not required, but might be useful later). Press save and go back to the resources screen.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-resource-type.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=6e3f7e6ee1612eb230d2e65cddc08761" alt="Edit resource screen" width="866" height="1114" data-path="images/do-resource-type.png" />

4. Select the `Add Additional Resource from Source` option below the list of added resources, repeat steps 1-2, and navigate to the edit form for a new resource.

5. Select `Resource Type` - `Worker`, save changes and go back.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-resource-type-2.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=1077ed4b7dcdbf694cd2f9a0b4dc45ab" alt="Edit resource screen" width="865" height="519" data-path="images/do-resource-type-2.png" />

6. Proceed with the next steps, add environment variables if needed, verify a new monthly cost of the application and create resources.

You can find created resources in the `overview` tab.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-resources-overview.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=c4abd300af4684980929c09527c95976" alt="Resources overview screen" width="1207" height="635" data-path="images/do-resources-overview.png" />

7. Navigate to Application Spec `(settings tab)`. Change the `dockerfile_path` variable to files with migrator and scheduler.
   Migrator is placed in the `jobs` section. You can also find it by name of the resource. The scheduler is placed in the `workers` section.

<Note>
  To deploy your application in a monorepo, it’s essential to modify the `source_dir` parameter to the root directory.
  This adjustment is necessary to ensure the correct configuration and operation of the applications within the monorepo.
</Note>

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-migrator-app-spec.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=7041f620e88aa6654c76c3c0dc6529c8" alt="Migrator spec screen" width="1051" height="599" data-path="images/do-migrator-app-spec.png" />

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-scheduler-app-spec.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=2fb8cf1dc4192910a539887218c030a7" alt="Scheduler spec screen" width="1067" height="602" data-path="images/do-scheduler-app-spec.png" />

## Logging (optional)

### Build-in

Digital Ocean has built-in logs in raw format. It will gather all data that your apps will produce.
In order to view them, follow these steps:

1. Log in to your Digital Ocean account.
2. Click on the Apps tab in the left-hand navigation menu.
3. Click on the name of the app you want to view the logs for.
4. Click on the Runtime Logs tab in the app dashboard.
5. You will see a list of logs for different components of your app. Click on the component you want to view the logs for.
6. You can filter the logs by time, severity, and component. Use the drop-down menus provided to select your filter criteria.
7. You can also search for specific keywords in the logs by using the search bar at the top of the page.

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-runtime-built-in-logs.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=cf930d3eb119ccaec795924c37e2d110" alt="Runtime built in logs screen" width="3002" height="1420" data-path="images/do-runtime-built-in-logs.png" />

### Integrations

Currently, Digital Ocean Apps supports only 3 integrations: [PaperTrail](https://marketplace.digitalocean.com/add-ons/papertrail), [Logtail](https://marketplace.digitalocean.com/add-ons/logtail) and [Datadog](https://www.datadoghq.com/). You can find detailed instructions on how to set up these logs at this [link](https://docs.digitalocean.com/products/app-platform/how-to/forward-logs/).

### Example Integration Logtail

To configure Logtail follow these steps:

1. Create account on Logtail
2. Open Sources on the left sidebar.
3. Create new source by clicking "Connect source" button

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-logs-logtail-sources.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=d655bebc90a5b069273f31fd5ea754a6" alt="Logs Integrations logtail sources" width="2782" height="1452" data-path="images/do-logs-logtail-sources.png" />

4. Select HTTP source and specify name for this connection

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-logs-logtail-connect-source.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=292df8ad3e30550dc49c878954bda3aa" alt="Logs Integrations Logtail connect" width="1157" height="637" data-path="images/do-logs-logtail-connect-source.png" />

5. Copy source token

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-logs-logtail-token.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=39152ffa953f10088daa946206191692" alt="Logs Integrations Logtail token" width="1203" height="591" data-path="images/do-logs-logtail-token.png" />

6. Open Digital Ocean Apps
7. Select Settings tab for your application

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-app-logs-settings.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=a846149be8b62fbd2f27dd5ff90dae64" alt="Logs Integrations Settings" width="1500" height="540" data-path="images/do-app-logs-settings.png" />

8. Select Log Forwarding and then press "Add Destination"

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-logs-log-forwarding.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=ebe863a535e1e4ed9da6ca8f50730cc1" alt="Logs Forwarding" width="1256" height="248" data-path="images/do-logs-log-forwarding.png" />

9. Fill information with token that we retrieved from Logtail

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-create-log-forward.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=343b783433f57a5cd479ed0a3b9e1390" alt="Logs Create Log Forward" width="794" height="749" data-path="images/do-create-log-forward.png" />

10. That's it! In couple minutes your app will send the latest logs to Logtail

<img src="https://mintcdn.com/ship-jskiller1404-add-ommiting-private-fields-feature/E9XBHl8mCOQjBjO1/images/do-logs-logtail-final-view.png?fit=max&auto=format&n=E9XBHl8mCOQjBjO1&q=85&s=c07079e4180078b9ddd842a8979bd50f" alt="Logs Logtail Final View" width="1216" height="550" data-path="images/do-logs-logtail-final-view.png" />
