Burn an incense. Let it carry your data to cloud.
Incense is here for managing your Google Cloud data. It was created in 2016 since there wasn't an official API client library for Cloud Storage.
- Add incense to your list of dependencies in mix.exs:
def deps do
[{:incense, "~> 0.2.0"}]
end
- Configure incense with your project name and JSON credentials (you can skip credentials if your application is running on GCE):
config :incense,
project_name: 'hola'
key: {:json, "path/to/your/google/credentials.json"}
- Ensure incense is started before your application (no required for recent versions of Elixir):
def application do
[applications: [:incense]]
end