DB-Diff-Insight is a Django App to compare data between 2 different data sources, it helps in identifying the differences between 2 datasets.
License: MIT
Running type checks with mypy:
$ mypy data_compare
The following details how to deploy this application.
- Clone the github Repo
- Run
pip install -r requirements\production.txt - Configure database(postgres for production usage) and add details in
config/settings/production.py - Run
python manage.py migrate - Create a superuser using
python manage.py createsuperuser - Launch the app using
python manage.py runserver - Launch Celery using
celery -A data_compare worker -l INFO