https://github.com/genu/bible-helper
https://github.com/genu/bible-helper
bible electron
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/genu/bible-helper
- Owner: genu
- License: mit
- Created: 2018-04-06T04:33:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T08:17:07.000Z (almost 2 years ago)
- Last Synced: 2025-04-06T08:07:03.833Z (7 months ago)
- Topics: bible, electron
- Language: JavaScript
- Size: 1.14 MB
- Stars: 6
- Watchers: 2
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bible Helper
A simple scripture reference lookup tool
Keyboard shortcut: `Command+Shift+E`

[DOWNLOAD](https://github.com/genu/bible-helper/releases/download/v1.0.3/bible-helper.dmg) (MAC)
## Developing
``` bash
# install dependencies
yarn install
```
This project uses [ESV API](https://api.esv.org/) under the hood. You must register for an api authentication token in order to run locally.
Once you get a Auth token, you must create a local config file in `server/config/local.js` (Don't worry, this file is ignored by git) with the following contents:
```javascript
module.exports = {
token: 'YOUR_TOKEN'
};
```
```bash
# Run the server and app in development mode
yarn run dev
```
### Building a binary
``` bash
# Build the app and create a release in the /releases folder
yarn run build