Skip to content

This project is used to build the website https://www.dailyoffice2019.com. The site invites you to join with Christians around the world in praying with the Church, at any time or in any place you may find yourself.

License

Notifications You must be signed in to change notification settings

perryholden/dailyoffice2019

 
 

Repository files navigation

Daily Office, Book of Common Prayer 2019 (https://www.dailyoffice2019.com)

This project is used to build the website https://www.dailyoffice2019.com. It is a Django application written in Python (to be installed in a development environment). It is used to produce a static html and javascript site which can then be deployed to the production environment.

WHAT IS THE SITE FOR?

The site invites you to join with Christians around the world in praying with the Church, at any time or in any place you may find yourself. It makes it easy to pray daily morning, midday, evening, and compline (bedtime) prayer without flipping pages, searching for scripture readings or calendars, or interpreting rubrics. The prayers are presented from The Book of Common Prayer (2019) of the Anglican Church in North America and reflect the ancient patterns of daily prayer Christians have used since the earliest days of the church.

WHAT IS THE DAILY OFFICE?

Daily Morning Prayer and Daily Evening Prayer are the established rites (offices) by which, both corporately and individually, God’s people annually encounter the whole of the Holy Scriptures, daily confess their sins and praise Almighty God, and offer timely thanksgivings, petitions, and intercessions.

Contributing

Pull requests are welcome. Take a look at the Github issues and see where you might help out. Updates to documentation and tests (both of which are largely missing) are also welcome.

Requirements

  • Python 3.12
  • Node 16
  • PostgreSQL
  • Memcached 1.6

The project is known to work with these versions, although it may also work with more recent versions.

Setting up a development environment

If you are using macOS, all the above requirements may be installed with Homebrew.

Initial project setup

  • Clone or fork the project from https://github.com/blocher/dailyoffice2019
  • cd dailyoffice2019
  • cp app/.env.development app/.env.local
  • cp site/website/.env.example site/website/.env

Import database

  • Connect to Postgres psql -d postgres
  • Create database create database dailyoffice;
  • Create user create user dailyoffice with password 'password';
  • Grant permissions grant all privileges on database dailyoffice to dailyoffice;
  • Exit postgres \q
  • Import unzip -p site/dailyoffice_2024_01_30.sql.zip dailyoffice_2024_01_30.sql | psql -U dailyoffice dailyoffice

Setup up python environment

  • Go to the project's /site directory
  • Create a Python virtual environment python3 -m venv env
  • Load virtual environment source env/bin/activate
  • Install Python Requirements pip install -r requirements.txt

Run API server (in separate terminal)

  • Collect static assets python manage.py collectstatic
  • Start development server python manage.py runsslserver
  • The API documentation will be accessible locally at https://127.0.0.1:8000/api/

Run the client (frontend) server

  • Go to the project's /app directory
  • Follow the setup instructions in the client README: app/README.md
  • The frontend will be accessible locally at http://127.0.0.1:8080

Code formatting standard

  • Please use black to format code with a line length of 119 beore submitting a pull request
  • find . -iname "*.py" | xargs black --target-version=py311 --line-length=119 from the site directory

Quick overview

The application is built around several Django "apps". The most important are:

  • website: This is the base site. All settings are defined in website\settings.py and all paths are defined in website\routes.py. Start here.
  • office: This is where the bulk of the work is down to generate each Office.
  • churchcal: This is used to build the church calendar. It currently supports both the Anglican Church in North America and the Episcopal Church calendars (though only ACNA is currently used for this project)
  • bible: This is used to retrieve bible passages from various sources (currently only Bible Gateway, but others such as the ESV API are coming soon)
  • psalter: This is used to retrieve passages from the Psalms (currently only the renewed Coverdale translation in the Book of Common Prayer 2019)

NOTE: churchcal, bible, and psalter apps may be spun off as separate projects soon and added as dependencies to this project

Submitting Issues and Contact

About

This project is used to build the website https://www.dailyoffice2019.com. The site invites you to join with Christians around the world in praying with the Church, at any time or in any place you may find yourself.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 77.2%
  • Python 12.0%
  • HTML 7.7%
  • Vue 2.6%
  • SCSS 0.4%
  • CSS 0.1%