Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/freenowtech/phrase-kotlin-client
https://github.com/freenowtech/phrase-kotlin-client
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/freenowtech/phrase-kotlin-client
- Owner: freenowtech
- License: apache-2.0
- Created: 2018-08-17T12:28:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T15:10:33.000Z (5 months ago)
- Last Synced: 2024-08-13T10:56:44.753Z (4 months ago)
- Language: Kotlin
- Size: 223 KB
- Stars: 3
- Watchers: 5
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phrase-kotlin-client
Kotlin Client for PhraseApp.
## What is this?
This project contains the task to handle the synchronization via API from [PhraseApp API v2](http://docs.phraseapp.com/api/v2/).[![codecov][codecov-badge-url]][codecov-project-url]
[![Build](https://github.com/freenowtech/phrase-kotlin-client/actions/workflows/mvn.yml/badge.svg?branch=master)](https://github.com/freenowtech/phrase-kotlin-client/actions/workflows/mvn.yml)
[![Release](https://img.shields.io/github/v/release/freenowtech/phrase-kotlin-client)](https://github.com/freenowtech/phrase-kotlin-client/releases/latest)[codecov-project-url]: https://codecov.io/gh/freenowtech/phrase-kotlin-client
[codecov-badge-url]: https://codecov.io/gh/freenowtech/phrase-kotlin-client/branch/master/graph/badge.svgSupported Spring Boot versions:
| Version | Spring Boot Version |
|---------|---------------------|
| 2.x | 3.x |
| 1.x | 2.x |## How to use it
You need configure your sync task
```
val config = PhraseAppSyncTaskConfig(
url = "https://api.phraseapp.com",
authKey = "authKey"
)val phraseAppSyncTask = PhraseAppSyncTask(config)
phraseAppSyncTask.run()
```