# Appfolio Deploy Integration

> Deploy AppFolio integration service to cloud infrastructure. Trigger: "deploy appfolio".

- Skill: `jeremylongshore/appfolio-deploy-integration` (Agent Skill)
- Install (CLI): `npx skillmds@latest add jeremylongshore/appfolio-deploy-integration`
- Raw SKILL.md: https://api.skillmd.com/api/skills/jeremylongshore/appfolio-deploy-integration/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- License: MIT
- Author: jeremylongshore (https://skillmd.com/u/jeremylongshore)
- Updated: 2026-09-08
- Page: https://skillmd.com/skills/jeremylongshore/appfolio-deploy-integration

---


# appfolio deploy integration | sed 's/\b\(.\)/\u\1/g'

## Cloud Run Deployment
```bash
gcloud run deploy appfolio-integration \
  --source . \
  --region us-central1 \
  --set-secrets=APPFOLIO_CLIENT_ID=appfolio-client-id:latest,APPFOLIO_CLIENT_SECRET=appfolio-client-secret:latest \
  --set-env-vars=APPFOLIO_BASE_URL=https://your-company.appfolio.com/api/v1 \
  --no-allow-unauthenticated
```

## Health Check
```typescript
app.get("/health", async (req, res) => {
  try {
    await client.http.get("/properties");
    res.json({ status: "healthy" });
  } catch { res.status(503).json({ status: "unhealthy" }); }
});
```

## Resources

- [AppFolio Stack APIs](https://www.appfolio.com/stack/partners/api)
- [AppFolio Engineering Blog](https://engineering.appfolio.com)


