etnguyen03 / opendental-patientportal

Patient portal for Opendental

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

opendental-patientportal

CI Codacy Badge Codacy Badge GitHub license

A patient portal written in Django for Open Dental.

Please note that this project has absolutely no affiliation with Open Dental. It just interfaces with the MySQL database.

This is still a work in progress, and is definitely not ready for any production usage.

Development Environment Setup

git clone https://github.com/etnguyen03/opendental-patientportal
cd opendental-patientportal

Now, you will want to copy patientportal/settings/config.sample.py to patientportal/settings/config.py and fill in the details.

Then,

pipenv install --dev
pipenv run python3 manage.py collectstatic
pipenv run python3 manage.py migrate
pipenv run gunicorn patientportal.wsgi

Production Setup

I assume that you have a reverse proxy and a Postgres database set up.

git clone https://github.com/etnguyen03/opendental-patientportal
cd opendental-patientportal

Now, you will want to copy patientportal/settings/config.sample.py to patientportal/settings/config.py and fill in the details. Ensure DEBUG is set to False.

Then,

pipenv install
pipenv run python3 manage.py collectstatic
pipenv run python3 manage.py migrate
pipenv run gunicorn patientportal.wsgi

A systemd service will be created in the future.


This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://www.gnu.org/licenses/.

About

Patient portal for Opendental

License:GNU Affero General Public License v3.0


Languages

Language:Python 69.9%Language:HTML 29.1%Language:Dockerfile 0.7%Language:Shell 0.2%Language:CSS 0.1%