# Install the client package
composer require hymns/alertiqo-client-php
# Publish config
php artisan vendor:publish --tag=alertiqo-config
# Add to .env
ALERTIQO_API_KEY=your-api-key
ALERTIQO_ENDPOINT=https://alertiqo.hamizi.net
# Install the client package
npm install @hymns/alertiqo
# Initialize in your app
import Alertiqo from '@hymns/alertiqo';
const alertiqo = new Alertiqo({
apiKey: 'your-api-key',
endpoint: 'https://alertiqo.hamizi.net',
});
alertiqo.init();
# Install the client package
npm install @hymns/alertiqo-node
# Initialize in your app
const Alertiqo = require('@hymns/alertiqo-node').default;
const alertiqo = new Alertiqo({
apiKey: 'your-api-key',
endpoint: 'https://alertiqo.hamizi.net',
});
alertiqo.init();
# Install the client package
pip install alertiqo
# Initialize in your app
from alertiqo import Alertiqo
alertiqo = Alertiqo(
api_key="your-api-key",
endpoint="https://alertiqo.hamizi.net",
)
alertiqo.init()
# Install the client package
go get github.com/hymns/alertiqo-go
# Initialize in your app
import "github.com/hymns/alertiqo-go"
client := alertiqo.New(alertiqo.Config{
APIKey: "your-api-key",
Endpoint: "https://alertiqo.hamizi.net",
})
client.Init()
# Add to Gemfile
gem 'alertiqo'
# Initialize in your app
require 'alertiqo'
Alertiqo.configure do |config|
config.api_key = 'your-api-key'
config.endpoint = 'https://alertiqo.hamizi.net'
end
Alertiqo.init