An open API service indexing awesome lists of open source software.

https://github.com/resuelve/chatex

Google Chat API - Client Library
https://github.com/resuelve/chatex

elixir google

Last synced: 5 months ago
JSON representation

Google Chat API - Client Library

Awesome Lists containing this project

README

          

# Chatex

**Cliente de Elixir para la API de Google Chat.**

## 🚀 Instalación

Agrega `:chatex` a tus dependencias en el archivo `mix.exs`:

```elixir
def deps do
[
{:chatex, "~> 3.0.0"}
]
end
```

### ⚙️ Configurar variables de entorno.

El archivo __.env.dist__ contiene un listado actualizado de las variables de entorno necesarias para el proyecto, se debe copiar ese archivo a uno nuevo llamado __.env__

Exporta las variables:

```shell
export $(cat .env | xargs)
```

## Instalar dependencias

```shell
mix deps.get
```