/bible-helper

Primary LanguageJavaScriptMIT LicenseMIT

Bible Helper

A simple scripture reference lookup tool

Keyboard shortcut: Command+Shift+E

DOWNLOAD (MAC)

Developing

# install dependencies
yarn install

This project uses ESV API 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:

module.exports = {
  token: 'YOUR_TOKEN'
};
# Run the server and app in development mode
yarn run dev

Building a binary

# Build the app and create a release in the /releases folder
yarn run build