> ## Documentation Index
> Fetch the complete documentation index at: https://docs.comify.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Start building your own communication infrastructure

To integrate Comify into your application, you'll first need to create a Comify account and set up a service provider in the Comify Dashboard. Follow these steps to get started:

## Getting Started

<Steps>
  <Step title="Create a Comify Account">
    [Create a Comify account](https://www.comify.io/sign-up) on Comify or [Sign In](https://app.comify.io/login) if you already have one.
  </Step>

  <Step title="Add the SDK into your project">
    Choose the sdk that best suits your use case and follow the SDK installation instructions:

    <Tabs>
      <Tab title="Node.js">
        ```bash theme={null}
        npm install comify-node
        ```
      </Tab>

      <Tab title="Ruby">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Python">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Go">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="PHP">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Java">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Javascript">
        ```bash theme={null}
        coming soon
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Configure API Keys">
    To access Comify, set the `COMIFY_API_KEY` in your environment variables. You can find your API key in the developer section of your Comify dashboard.

    For security reasons, it’s best to store your API key as an environment variable.

    ```bash theme={null}
    COMIFY_API_KEY=YOUR_API_KEY
    ```
  </Step>

  <Step title="Add Your Service Provider">
    In order to send communications, you’ll need to add a service provider. Follow the instructions for your service provider of choice

    * [Whatsapp](/service-provider/whatsapp)
    * [Email](/service-provider/email)
    * [SMS](/service-provider/sms)
    * [Push](/service-provider/push)
    * [Chat](/service-provider/chat)
  </Step>

  <Step title="Add Your Templates">
    In order to send communications, you’ll need to add standart templates for each service provider. Follow the instructions for your service provider of choice

    * [Whatsapp Template](/service-provider/whatsapp)
    * [Email Template](/service-provider/email)
    * [SMS Template](/service-provider/sms)
    * [Push Template](/service-provider/push)
    * [Chat Template](/service-provider/chat)
  </Step>

  <Step title="Send your first communication">
    Choose the sdk that best suits your use case and follow the SDK installation instructions:

    <Tabs>
      <Tab title="Node.js">
        ```bash theme={null}
        const { Comify } = require('comify-node')

        const comm = new Comify('COMIFY_API_KEY')

        comm.triggerComm('template_name',{ 
          "order_id" : "123455",
          "billing" : {
            "customerEmail" : "contact@comify.io",
            "customerName" : "Comify"
          }
        }, 'email')
        ```
      </Tab>

      <Tab title="Ruby">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Python">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Go">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="PHP">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Java">
        ```bash theme={null}
        coming soon
        ```
      </Tab>

      <Tab title="Javascript">
        ```bash theme={null}
        coming soon
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Join the Comify Community">
    In case you have any questions or feedback, you can contact us on [support@comify.io](mailto:support@comify.io) or join our community of developers and users on [Discord](https://discord.gg/E42mSUcm).
  </Step>
</Steps>

Now that you triggered your first communication, learn more about the advanced features and concepts of Comify.
