sirodoht / allthevaccines

Human vaccine tracker.

Home Page:https://allthevaccines.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

allthevaccines

Human vaccine tracker.

Development

This is a Django codebase. Check out the Django docs for general technical documentation.

Structure

The Django project is allthevaccines. There is one Django app, main, with all business logic. Application CLI commands are generally divided into two categories, those under python manage.py and those under make.

├── Makefile
├── allthevaccines/  # django project directory
│   ├── asgi.py
│   ├── settings.py  # django settings
│   ├── urls.py  # root urls module
│   └── wsgi.py
├── allthevaccines.org.conf  # nginx configuration
├── default.nix  # nix environment
├── deploy.sh  # deployment script
├── emperor.ini  # uwsgi emperor config
├── emperor.uwsgi.service  # uwsgi systemd config
├── main/  # django main app directory
│   ├── admin.py
│   ├── apps.py
│   ├── migrations/
│   ├── models.py  # all database models
│   ├── static/
│   │   └── style.css  # CSS stylesheet — there is only this one
│   ├── templates/  # django templates
│   │   └── main/
│   │       ├── about.html  # static about page
│   │       ├── disease_detail.html
│   │       ├── disease_list.html
│   │       ├── index.html  # aka vaccine list template
│   │       ├── layout.html  # all templates inherit this one
│   │       └── vaccine_detail.html
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── manage.py
├── requirements.in  # manually edited requirements file
├── requirements.txt  # pip-compile generated file
├── requirements_dev.txt  # manually edited dev requiremenets
├── static/  # generated static directory
└── uwsgi.ini  # uwsgi vassal configuration

Set up

cp .envrc.example .envrc

# add SMPT credentials (optional) in .envrc
vim .envrc

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Database

This project uses SQLite. To create the database and schema and apply migrations, run:

python manage.py migrate

Data

Production vaccine and disease data are serialised and committed to the repository, file name is vaccine-disease-data.json.

To load all vaccine and disease data, run:

python manage.py loaddata --app main vaccine-disease-data.json

Note: The above command needs to run after the migration command.

To dump/serialise all vaccine and disease data, run:

python manage.py dumpdata main.Vaccine main.Disease > vaccine-disease-data.json

Serve

To run the Django development server:

python manage.py runserver

Testing

Using the Django test runner:

python manage.py test

For coverage, run:

make cov

Code linting & formatting

The following tools are used for code linting and formatting:

  • black for code formatting.
  • isort for imports order consistency.
  • flake8 for code linting.

To use:

make format
make lint

Deployment

Deployment is configured with nginx as a reverse proxy and uWSGI in Emperor mode. Configuration files:

Also, uWSGI can be configured as a systemd service. See emperor.uwsgi.service. To follow logs, run:

journalctl -u emperor.uwsgi.service -fb

License

This software is licensed under the MIT license. For more information, read the LICENSE file.

About

Human vaccine tracker.

https://allthevaccines.org/

License:MIT License


Languages

Language:Python 54.2%Language:HTML 30.2%Language:CSS 11.6%Language:Makefile 2.1%Language:Shell 1.9%