Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Bounceapp/elixir-vercel
https://github.com/Bounceapp/elixir-vercel
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/Bounceapp/elixir-vercel
- Owner: Bounceapp
- License: mit
- Created: 2022-05-30T14:48:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-14T15:19:44.000Z (about 2 years ago)
- Last Synced: 2024-08-09T15:51:31.975Z (4 months ago)
- Language: Elixir
- Size: 20.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-elixir - vercel - An Elixir wrapper for Vercel's API. (Cloud Infrastructure and Management)
- awesome-elixir - vercel - An Elixir wrapper for Vercel's API. (Cloud Infrastructure and Management)
README
# Vercel for Elixir [![Hex pm](https://img.shields.io/hexpm/v/vercel.svg?style=flat)](https://hex.pm/packages/vercel) [![hex.pm downloads](https://img.shields.io/hexpm/dt/vercel.svg?style=flat)](https://hex.pm/packages/vercel)
An Elixir wrapper for Vercel's API
# Installation
This package can be installed by adding `vercel` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:vercel, "~> 0.2.0"}
]
end
```# Configuration
To make calls to Vercel, it is necessary to configure your Vercel Access Token on your `config.exs` file:
```elixir
config :vercel, access_token: System.get_env("VERCEL_ACCESS_TOKEN")
# OR
config :vercel, access_token: "YOUR_TOKEN"
```You can generate this token at https://vercel.com/account/tokens
# Documentation
The docs can be found at [https://hexdocs.pm/vercel](https://hexdocs.pm/vercel).
# License
More info at [LICENSE](LICENSE).