├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── dcinbox.py ├── es_connection.py ├── importer.py ├── requirements.txt ├── schema.py ├── script_create_index.py └── templates ├── email.html └── homepage.html /.gitignore: -------------------------------------------------------------------------------- 1 | dataset.json 2 | venv 3 | *.pyc 4 | runme.sh 5 | 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn dcinbox:app --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/README.md -------------------------------------------------------------------------------- /dcinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/dcinbox.py -------------------------------------------------------------------------------- /es_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/es_connection.py -------------------------------------------------------------------------------- /importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/importer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/schema.py -------------------------------------------------------------------------------- /script_create_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/script_create_index.py -------------------------------------------------------------------------------- /templates/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/templates/email.html -------------------------------------------------------------------------------- /templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonw/dcinbox_explorer/HEAD/templates/homepage.html --------------------------------------------------------------------------------