├── .dockerignore ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .pytest_cache └── v │ └── cache │ ├── lastfailed │ └── nodeids ├── .travis.yml ├── Dask_Dockerfile ├── Dockerfile ├── Dockerfile_Tomcat ├── README.md ├── __init__.py ├── admin.py ├── dask-worker-space ├── global.lock └── purge.lock ├── dask_requirements.txt ├── docker-compose-local.yml ├── docker-compose.yml ├── docker_start.sh ├── docker_start_local.sh ├── hooks └── build ├── login_middleware.py ├── manage.py ├── pram_flask └── pram_qaqc_reports │ ├── agdrift.html │ ├── beerex.html │ ├── earthworm.html │ ├── iec.html │ ├── kabam.html │ ├── rice.html │ ├── sip.html │ ├── stir.html │ ├── ted.html │ ├── terrplant.html │ ├── therps.html │ └── trex.html ├── pytest.ini ├── redis.conf ├── rollbar.sh ├── routers.py ├── secrets └── .gitignore ├── settings.py ├── settings_docker.py ├── settings_local.py ├── settings_outside.py ├── travis_build.sh ├── travis_build_new.sh ├── urls.py ├── uwsgi.ini ├── wsgi_docker.py └── wsgi_local.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pytest_cache/v/cache/lastfailed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.pytest_cache/v/cache/lastfailed -------------------------------------------------------------------------------- /.pytest_cache/v/cache/nodeids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.pytest_cache/v/cache/nodeids -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dask_Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/Dask_Dockerfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_Tomcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/Dockerfile_Tomcat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/admin.py -------------------------------------------------------------------------------- /dask-worker-space/global.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dask-worker-space/purge.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dask_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/dask_requirements.txt -------------------------------------------------------------------------------- /docker-compose-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/docker-compose-local.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/docker_start.sh -------------------------------------------------------------------------------- /docker_start_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/docker_start_local.sh -------------------------------------------------------------------------------- /hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/hooks/build -------------------------------------------------------------------------------- /login_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/login_middleware.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/manage.py -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/agdrift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/agdrift.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/beerex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/beerex.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/earthworm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/earthworm.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/iec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/iec.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/kabam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/kabam.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/rice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/rice.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/sip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/sip.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/stir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/stir.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/ted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/ted.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/terrplant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/terrplant.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/therps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/therps.html -------------------------------------------------------------------------------- /pram_flask/pram_qaqc_reports/trex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/pram_flask/pram_qaqc_reports/trex.html -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE=settings_local -------------------------------------------------------------------------------- /redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/redis.conf -------------------------------------------------------------------------------- /rollbar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/rollbar.sh -------------------------------------------------------------------------------- /routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/routers.py -------------------------------------------------------------------------------- /secrets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | 4 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/settings.py -------------------------------------------------------------------------------- /settings_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/settings_docker.py -------------------------------------------------------------------------------- /settings_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/settings_local.py -------------------------------------------------------------------------------- /settings_outside.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/settings_outside.py -------------------------------------------------------------------------------- /travis_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/travis_build.sh -------------------------------------------------------------------------------- /travis_build_new.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/travis_build_new.sh -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/urls.py -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/uwsgi.ini -------------------------------------------------------------------------------- /wsgi_docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/wsgi_docker.py -------------------------------------------------------------------------------- /wsgi_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanted/qed/HEAD/wsgi_local.py --------------------------------------------------------------------------------