Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions fern/docs/pages/airdrop/deploy-to-organization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ Follow these steps:

1. Copy `.env.example` to a new file named `.env` and fill in the required variables.
2. Deploy a draft version of your snap-in to your organization by using `make deploy`.
3. Install the snap-in in your DevRev by going to **Settings** > **Snap-ins** > **Install snap-in**.
4. Set up the connection under **Settings** > **Airdrops** > **Connections**.
5. Create an import at **Settings** > **Airdrops** > **Airdrop**.
3. Install the snap-in by going to **Settings** > **Snap-ins** > **Install snap-in** or by running `devrev snap_in activate`.
4. Start an import by clicking the **Start Airdrop** button in the top right corner.
Copy link
Contributor

@bc-devrev bc-devrev Sep 15, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
4. Start an import by clicking the **Start Airdrop** button in the top right corner.
4. Start an import by clicking the **Start AirSync** button in the top-right corner.


This step is also a prerequisite for publishing the snap-in on the DevRev marketplace.

Expand All @@ -25,3 +24,13 @@ devrev snap_in_package logs | code -
```

For more information, refer to [Debugging](/snapin-development/debugging).

### Uninstall

When you need to remove your snap-in from the organization, you can use the uninstall command to delete the most recently deployed snap-in package and version.

Run the following command from the root directory of your snap-in:

```bash
make uninstall
```
Loading