-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #231 from WycliffeAssociates/usfm-error-detection-…
…and-fix-programmatically Usfm error detection and fix programmatically
- Loading branch information
Showing
27 changed files
with
2,322 additions
and
396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ FROM_EMAIL_ADDRESS = "[email protected]" | |
SMTP_HOST = "https://example.com" | ||
SMTP_PORT = 111 | ||
SMTP_PASSWORD = "fakepass" | ||
SEND_EMAIL = False | ||
SEND_EMAIL = false | ||
|
||
# The port to pass to gunicorn via ./backend/gunicorn.conf.py | ||
PORT=5005 | ||
|
@@ -45,6 +45,17 @@ USE_GIT_CLI=true | |
# future, if desired we could have them show by sleec | ||
SHOW_TN_BOOK_INTRO=false | ||
|
||
# If true, then check USFM content for certain USFM structural defects | ||
# and attempt a fix so that the USFM can then be parsed. | ||
CHECK_USFM=true | ||
|
||
# When detecting and potentially correcting defective USFM source | ||
# text, true means check all books for a language which had at least | ||
# one book with a USFM defect. false means only check the specific | ||
# books specified as defective for the language as declared in | ||
# parsing.RESOURCES_WITH_USFM_DEFECTS | ||
CHECK_ALL_BOOKS_FOR_LANGUAGE=true | ||
|
||
# * http://localhost:3000 covers requests originating from the case | ||
# where 'npm run dev' is invoked to run vite (to run svelte js frontend) | ||
# outside Docker. This results in vite's development mode which runs on | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.