A Bible translation editor for everyone.
Report Issue
·
Feature Request
It is relatively easy to set up the application locally for development.
This is an example of how to list things you need to use the software and how to install them.
NB: If you are cloning the repository on linux you might need to do the following:
ubuntu:
sudo apt-get update && sudo apt-get install libx11-dev libxkbfile-dev
For other distributions refer to documentation on how to download those above libraries.
To run the electron application:
- Fork and clone this repository
- Install dependencies with
yarn - Install dependencies and Build the app run
yarn build:electron - Start the application run
yarn start:electron - To bundle the application run
yarn electron:dist
To run the browser application:
- Fork and clone this repository
- Install dependencies with
yarn - Install dependencies and Build the app run
yarn build:browser - Start the application with
yarn start:browserin another terminal window. - Navigate to the given link in the terminal
For developers: Instead of using the build command, you can use the watch command to see real-time changes. Run yarn watch:electron for electron and for browser yarn watch:browser instead of the build command and execute the start command simultaneously.