Installation
Install the CLI
Section titled “Install the CLI”npm install -g @fyrn/clipnpm add -g @fyrn/clibrew tap fyrn/tapbrew install fyrnVerify the installation:
fyrn --version# fyrn/0.9.0 linux-x64 node-v20.10.0Authenticate
Section titled “Authenticate”Log in to your fyrn account:
fyrn auth loginThis opens your browser for OAuth authentication. Once complete, your credentials are stored locally in ~/.fyrn/credentials.json.
Initialize a project
Section titled “Initialize a project”Create a new fyrn project directory:
fyrn init my-integrationscd my-integrationsThis creates:
my-integrations/├── fyrn.config.yaml # Project configuration├── flows/ # Your flow definitions├── connectors/ # Connector configurations└── .fyrn/ # Local state (gitignored)Configure connectors
Section titled “Configure connectors”Add the systems you want to integrate:
# Interactive connector setupfyrn connector add shopify
# Or specify auth directlyfyrn connector add salesforce --auth oauth2The CLI guides you through authentication for each connector. Credentials are encrypted and stored securely.
Next steps
Section titled “Next steps”- Quickstart — Deploy your first flow in 5 minutes
- Your First Flow — Detailed walkthrough of creating a flow
- CLI Reference — Full list of CLI commands