diff --git a/README.md b/README.md index fc6d5c9..d3338eb 100644 --- a/README.md +++ b/README.md @@ -20,13 +20,13 @@ end Put your Lokalise API token into `config.exs`: ```elixir -config :elixir_lokalise_api, api_token: "LOKALISE_API_TOKEN" +config :your_app, api_token: "LOKALISE_API_TOKEN" ``` If you are using ENV variables, use the following approach: ```elixir -config :elixir_lokalise_api, api_token: {:system, "LOKALISE_API_TOKEN"} +config :your_app, api_token: {:system, "LOKALISE_API_TOKEN"} ``` Now you can perform API calls: diff --git a/docs/additional_info/changelog.md b/docs/additional_info/changelog.md index 4dc68c6..fdcb67e 100644 --- a/docs/additional_info/changelog.md +++ b/docs/additional_info/changelog.md @@ -1,2 +1,5 @@ # Changelog +## 1.0.0-rc.1 (18-Mar-2021) + +* Initial release \ No newline at end of file diff --git a/docs/api/getting-started.md b/docs/api/getting-started.md index b9f660e..80c4b85 100644 --- a/docs/api/getting-started.md +++ b/docs/api/getting-started.md @@ -14,8 +14,6 @@ def deps do end ``` - - ## Initializing the Client In order to perform API requests, you require a special token that can be obtained in your [personal profile](https://lokalise.com/profile#apitokens) (*API tokens* section). @@ -23,13 +21,13 @@ In order to perform API requests, you require a special token that can be obtain After you've obtained the token, put it inside `config.exs`: ```elixir -config :elixir_lokalise_api, api_token: "LOKALISE_API_TOKEN" +config :your_app, api_token: "LOKALISE_API_TOKEN" ``` If you are using ENV variables, use the following approach: ```elixir -config :elixir_lokalise_api, api_token: {:system, "ENV_VARIABLE_NAME"} +config :your_app, api_token: {:system, "ENV_VARIABLE_NAME"} ``` Now you can send API requests! diff --git a/docs/index.md b/docs/index.md index 1740a69..1979bc6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,13 +17,13 @@ end Obtain Lokalise API token in your personal profile and put it into `config.exs`: ```elixir -config :elixir_lokalise_api, api_token: "LOKALISE_API_TOKEN" +config :your_app, api_token: "LOKALISE_API_TOKEN" ``` If you are using ENV variables, use the following approach: ```elixir -config :elixir_lokalise_api, api_token: {:system, "ENV_VARIABLE_NAME"} +config :your_app, api_token: {:system, "ENV_VARIABLE_NAME"} ``` Now you can perform API calls: