https://github.com/fastrepl/open-api-typesense
https://github.com/fastrepl/open-api-typesense
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fastrepl/open-api-typesense
- Owner: fastrepl
- Created: 2024-07-27T13:33:15.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-28T09:32:49.000Z (almost 2 years ago)
- Last Synced: 2025-06-27T02:16:34.522Z (10 months ago)
- Language: Elixir
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typesense Elixir Client
## Installation
```elixir
def deps do
[
{:oapi_typesense, git: "https://github.com/fastrepl/open-api-typesense.git", branch: "main"}
]
end
```
```elixir
# config/runtime.exs
config :oapi_typesense,
base_url: System.get_env("TYPESENSE_URL"),
api_key: System.get_env("TYPESENSE_API_KEY")
```
## Keep Client up to date
```bash
git submodule update --remote && mix api.gen default typesense-api-spec/openapi.yml
```