Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diareuse/dragapult
i18n consumer & generator for managing translations across Android, iOS and Web
https://github.com/diareuse/dragapult
android gradle-plugin i18n ios localization
Last synced: about 4 hours ago
JSON representation
i18n consumer & generator for managing translations across Android, iOS and Web
- Host: GitHub
- URL: https://github.com/diareuse/dragapult
- Owner: diareuse
- License: gpl-3.0
- Created: 2020-12-23T14:40:03.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-10-16T09:28:41.000Z (about 1 year ago)
- Last Synced: 2024-05-01T19:10:23.167Z (7 months ago)
- Topics: android, gradle-plugin, i18n, ios, localization
- Language: Kotlin
- Homepage:
- Size: 277 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme-paths.md
- License: license
Awesome Lists containing this project
README
# Setting up Paths
## Windows
``
## Unix
> Please note that the steps below will differ depending on which shell you use.
Find location of the `bin` directory in your downloaded (and extracted) `dragapult-app.zip` file. Good place to put this
in would be probably your home directory (`mkdir ~/.dragapult`).Thereafter you need to export this path so the shell can find it.
Either once:
```bash
export PATH="$PATH:~/dragapult/bin"
```Or on every log-on:
```bash
echo "export PATH=\"\$PATH:~/dragapult/bin\"" >> ~/.zshrc
source ~/.zshrc
```