A template for building a Progressive Web App with Scripture App Builder.
- Visual Studio Code
- Node 20.9.0+ (we recommend using Volta to manage the Node versions)
You will need to download the latest version of Scripture App Builder to use this project without the provided example data.
Install dependencies with npm install
.
The PWA depends on data files generated by Scripture App Builder. There is example data provided in the repo. To convert the base data files and run the PWA, do one of the following:
- Run
npm run convert:examples
to use the data in theexample_data
folder. - Run
npm run dev:noconvert
to start the development server.
- Run
Build PWA Data Files
in Scripture App Builder to generate the the base data files from a project - Run
npm run dev
to convert the base data files to a format needed for the PWA and run the development server. Changes to the base database files are watched and applied to the running PWA.
Contact [email protected] for the feature key to enable
Build PWA Data Files
Note: The book conversion step can take up to several minutes depending on the amount of scripture in the project and the speed of your computer's hard drive.
Run npm run build
to build an app with the data provided by Build PWA Data Files
.
Run npm run build:examples
to build an app with the example data.
The production build can be viewed by running npm run preview
.
The production build can be deployed to a public webserver for testing using Surge.
Scripture App Builder PWA uses Vitest for unit tests. See that added test files and tests adhere to the Front End Testing Style Guide.
├── scripts
│ ├── scripture-reference-utils.test.ts
│ └── scripture-reference-utils.ts
Run npm test
to run created test files.
This project is configured by default with the static adaptor, which will allow deployment on any platform that requires a static site.
The project uses Proskomma (docs) which is a JavaScript Scripture Runtime Engine for reading USFM. It provides a GraphQL interface to the data.
It is useful to be able to directly query the data during development. The data-sandbox
sub-project is a conversion of diegesis-apollo-sandbox to use the data generated by the convert
sub-project for the PWA.
After you have run Build PWA Data Files
from Scripture App Builder to populate files in the /data
directory, then run these commands.
npm install
npm run convert
cd data-sandbox
npm install
cd ..
npm run sandbox
Open a browser to http://localhost:2468/graphql to query the Scripture data using GraphQL.