├── .dockerignore ├── .editorconfig ├── .envs └── .test │ ├── .django │ └── .postgres ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── CONTRIBUTORS.txt ├── LICENSE ├── README.md ├── compose ├── local │ └── django │ │ ├── Dockerfile │ │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ │ └── start └── production │ ├── aws │ ├── Dockerfile │ └── maintenance │ │ ├── download │ │ └── upload │ ├── django │ ├── Dockerfile │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ ├── entrypoint │ └── start │ ├── nginx │ ├── Dockerfile │ └── default.conf │ ├── postgres │ ├── Dockerfile │ └── maintenance │ │ ├── _sourced │ │ ├── constants.sh │ │ ├── countdown.sh │ │ ├── messages.sh │ │ └── yes_no.sh │ │ ├── backup │ │ ├── backups │ │ └── restore │ └── traefik │ ├── Dockerfile │ └── traefik.yml ├── config ├── __init__.py ├── api │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ └── api_key.py │ ├── endpoints.py │ ├── ninja_types.py │ └── websockets │ │ ├── __init__.py │ │ ├── middleware.py │ │ └── queries.py ├── asgi.py ├── celery_app.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── delphic ├── __init__.py ├── contrib │ ├── __init__.py │ └── sites │ │ ├── __init__.py │ │ └── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_domain_unique.py │ │ ├── 0003_set_site_domain_and_name.py │ │ ├── 0004_alter_options_ordering_domain.py │ │ └── __init__.py ├── indexes │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_document_uploaded_by.py │ │ ├── 0003_remove_collection_author_collection_api_key.py │ │ ├── 0004_collection_processing.py │ │ └── __init__.py │ ├── models.py │ ├── signals.py │ └── tests.py ├── static │ ├── css │ │ └── project.css │ ├── fonts │ │ └── .gitkeep │ ├── images │ │ └── favicons │ │ │ └── favicon.ico │ └── js │ │ └── project.js ├── tasks │ ├── __init__.py │ └── index_tasks.py ├── templates │ ├── 403.html │ ├── 404.html │ ├── 500.html │ ├── base.html │ └── pages │ │ └── home.html ├── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py └── utils │ ├── __init__.py │ ├── collections.py │ ├── paths.py │ └── storages.py ├── docs ├── images │ ├── Delphic.png │ └── Delphic_Header.png └── sample_envs │ ├── local │ ├── .django │ ├── .frontend │ └── .postgres │ └── production │ ├── .django │ ├── .frontend │ └── .postgres ├── frontend ├── .dockerignore ├── .env ├── .nvmrc ├── Dockerfile ├── README.md ├── conf │ └── conf.d │ │ ├── default.conf │ │ └── gzip.conf ├── env.sh ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.test.tsx │ ├── App.tsx │ ├── LoginForm.tsx │ ├── api │ │ ├── collections.test.ts │ │ └── collections.ts │ ├── assets │ │ └── os_legal_128.png │ ├── chat │ │ ├── ChatCaption.tsx │ │ ├── ChatMessage.tsx │ │ ├── ChatMessageLoading.module.css │ │ ├── ChatMessageLoading.tsx │ │ └── ChatView.tsx │ ├── collections │ │ ├── CollectionCard.tsx │ │ ├── CollectionCreateModal.tsx │ │ └── CollectionInfoPopover.tsx │ ├── index.css │ ├── index.tsx │ ├── layouts │ │ └── DrawerLayout.tsx │ ├── logo.svg │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ ├── types.ts │ └── widgets │ │ ├── ErrorMessageBox.tsx │ │ ├── InfoMessageBox.tsx │ │ └── LoadingMessageBox.tsx ├── tsconfig.json └── yarn.lock ├── local.yml ├── locale └── README.rst ├── manage.py ├── merge_production_dotenvs_in_dotenv.py ├── production.yml ├── pytest.ini ├── requirements ├── base.txt ├── local.txt └── production.txt ├── setup.cfg ├── test.yml ├── test_file.txt └── tests ├── __init__.py ├── fixtures └── model_58.json ├── test_merge_production_dotenvs_in_dotenv.py ├── test_ninja_endpoints.py └── test_websocket_jwt_auth.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envs/.test/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.envs/.test/.django -------------------------------------------------------------------------------- /.envs/.test/.postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.envs/.test/.postgres -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/.pylintrc -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- 1 | John Scrudato 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/README.md -------------------------------------------------------------------------------- /compose/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/local/django/Dockerfile -------------------------------------------------------------------------------- /compose/local/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/local/django/celery/beat/start -------------------------------------------------------------------------------- /compose/local/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/local/django/celery/flower/start -------------------------------------------------------------------------------- /compose/local/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/local/django/celery/worker/start -------------------------------------------------------------------------------- /compose/local/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/local/django/start -------------------------------------------------------------------------------- /compose/production/aws/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/aws/Dockerfile -------------------------------------------------------------------------------- /compose/production/aws/maintenance/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/aws/maintenance/download -------------------------------------------------------------------------------- /compose/production/aws/maintenance/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/aws/maintenance/upload -------------------------------------------------------------------------------- /compose/production/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/celery/beat/start -------------------------------------------------------------------------------- /compose/production/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/celery/flower/start -------------------------------------------------------------------------------- /compose/production/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/celery/worker/start -------------------------------------------------------------------------------- /compose/production/django/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/entrypoint -------------------------------------------------------------------------------- /compose/production/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/django/start -------------------------------------------------------------------------------- /compose/production/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/nginx/Dockerfile -------------------------------------------------------------------------------- /compose/production/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/nginx/default.conf -------------------------------------------------------------------------------- /compose/production/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/Dockerfile -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/_sourced/constants.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/countdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/_sourced/countdown.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/_sourced/messages.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/yes_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/_sourced/yes_no.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/backup -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/backups -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/postgres/maintenance/restore -------------------------------------------------------------------------------- /compose/production/traefik/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/traefik/Dockerfile -------------------------------------------------------------------------------- /compose/production/traefik/traefik.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/compose/production/traefik/traefik.yml -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/__init__.py -------------------------------------------------------------------------------- /config/api/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/auth/__init__.py -------------------------------------------------------------------------------- /config/api/auth/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/auth/api_key.py -------------------------------------------------------------------------------- /config/api/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/endpoints.py -------------------------------------------------------------------------------- /config/api/ninja_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/ninja_types.py -------------------------------------------------------------------------------- /config/api/websockets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/websockets/__init__.py -------------------------------------------------------------------------------- /config/api/websockets/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/websockets/middleware.py -------------------------------------------------------------------------------- /config/api/websockets/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/api/websockets/queries.py -------------------------------------------------------------------------------- /config/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/asgi.py -------------------------------------------------------------------------------- /config/celery_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/celery_app.py -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /delphic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/__init__.py -------------------------------------------------------------------------------- /delphic/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/__init__.py -------------------------------------------------------------------------------- /delphic/contrib/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/__init__.py -------------------------------------------------------------------------------- /delphic/contrib/sites/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/migrations/0001_initial.py -------------------------------------------------------------------------------- /delphic/contrib/sites/migrations/0002_alter_domain_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/migrations/0002_alter_domain_unique.py -------------------------------------------------------------------------------- /delphic/contrib/sites/migrations/0003_set_site_domain_and_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/migrations/0003_set_site_domain_and_name.py -------------------------------------------------------------------------------- /delphic/contrib/sites/migrations/0004_alter_options_ordering_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/migrations/0004_alter_options_ordering_domain.py -------------------------------------------------------------------------------- /delphic/contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /delphic/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/indexes/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/admin.py -------------------------------------------------------------------------------- /delphic/indexes/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/apps.py -------------------------------------------------------------------------------- /delphic/indexes/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/migrations/0001_initial.py -------------------------------------------------------------------------------- /delphic/indexes/migrations/0002_remove_document_uploaded_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/migrations/0002_remove_document_uploaded_by.py -------------------------------------------------------------------------------- /delphic/indexes/migrations/0003_remove_collection_author_collection_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/migrations/0003_remove_collection_author_collection_api_key.py -------------------------------------------------------------------------------- /delphic/indexes/migrations/0004_collection_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/migrations/0004_collection_processing.py -------------------------------------------------------------------------------- /delphic/indexes/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/indexes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/indexes/models.py -------------------------------------------------------------------------------- /delphic/indexes/signals.py: -------------------------------------------------------------------------------- 1 | pass 2 | -------------------------------------------------------------------------------- /delphic/indexes/tests.py: -------------------------------------------------------------------------------- 1 | pass 2 | # Create your tests here. 3 | -------------------------------------------------------------------------------- /delphic/static/css/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/static/css/project.css -------------------------------------------------------------------------------- /delphic/static/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/static/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/static/images/favicons/favicon.ico -------------------------------------------------------------------------------- /delphic/static/js/project.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | /* Project specific Javascript goes here. */ 4 | -------------------------------------------------------------------------------- /delphic/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/tasks/__init__.py -------------------------------------------------------------------------------- /delphic/tasks/index_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/tasks/index_tasks.py -------------------------------------------------------------------------------- /delphic/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/templates/403.html -------------------------------------------------------------------------------- /delphic/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/templates/404.html -------------------------------------------------------------------------------- /delphic/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/templates/500.html -------------------------------------------------------------------------------- /delphic/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/templates/base.html -------------------------------------------------------------------------------- /delphic/templates/pages/home.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | -------------------------------------------------------------------------------- /delphic/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/users/admin.py -------------------------------------------------------------------------------- /delphic/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/users/apps.py -------------------------------------------------------------------------------- /delphic/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/users/forms.py -------------------------------------------------------------------------------- /delphic/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /delphic/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/users/models.py -------------------------------------------------------------------------------- /delphic/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /delphic/utils/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/utils/collections.py -------------------------------------------------------------------------------- /delphic/utils/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/utils/paths.py -------------------------------------------------------------------------------- /delphic/utils/storages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/delphic/utils/storages.py -------------------------------------------------------------------------------- /docs/images/Delphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/images/Delphic.png -------------------------------------------------------------------------------- /docs/images/Delphic_Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/images/Delphic_Header.png -------------------------------------------------------------------------------- /docs/sample_envs/local/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/sample_envs/local/.django -------------------------------------------------------------------------------- /docs/sample_envs/local/.frontend: -------------------------------------------------------------------------------- 1 | REACT_APP_API_ROOT_URL="http://localhost:8000" 2 | -------------------------------------------------------------------------------- /docs/sample_envs/local/.postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/sample_envs/local/.postgres -------------------------------------------------------------------------------- /docs/sample_envs/production/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/sample_envs/production/.django -------------------------------------------------------------------------------- /docs/sample_envs/production/.frontend: -------------------------------------------------------------------------------- 1 | REACT_APP_API_ROOT_URL="https://delphic.opensource.legal" 2 | -------------------------------------------------------------------------------- /docs/sample_envs/production/.postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/docs/sample_envs/production/.postgres -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .git 3 | -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | REACT_APP_API_ROOT_URL="http://localhost:8000" 2 | -------------------------------------------------------------------------------- /frontend/.nvmrc: -------------------------------------------------------------------------------- 1 | v18.15.0 2 | -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/conf/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/conf/conf.d/default.conf -------------------------------------------------------------------------------- /frontend/conf/conf.d/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/conf/conf.d/gzip.conf -------------------------------------------------------------------------------- /frontend/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/env.sh -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/logo192.png -------------------------------------------------------------------------------- /frontend/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/logo512.png -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/App.test.tsx -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/LoginForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/LoginForm.tsx -------------------------------------------------------------------------------- /frontend/src/api/collections.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/api/collections.test.ts -------------------------------------------------------------------------------- /frontend/src/api/collections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/api/collections.ts -------------------------------------------------------------------------------- /frontend/src/assets/os_legal_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/assets/os_legal_128.png -------------------------------------------------------------------------------- /frontend/src/chat/ChatCaption.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/chat/ChatCaption.tsx -------------------------------------------------------------------------------- /frontend/src/chat/ChatMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/chat/ChatMessage.tsx -------------------------------------------------------------------------------- /frontend/src/chat/ChatMessageLoading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/chat/ChatMessageLoading.module.css -------------------------------------------------------------------------------- /frontend/src/chat/ChatMessageLoading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/chat/ChatMessageLoading.tsx -------------------------------------------------------------------------------- /frontend/src/chat/ChatView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/chat/ChatView.tsx -------------------------------------------------------------------------------- /frontend/src/collections/CollectionCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/collections/CollectionCard.tsx -------------------------------------------------------------------------------- /frontend/src/collections/CollectionCreateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/collections/CollectionCreateModal.tsx -------------------------------------------------------------------------------- /frontend/src/collections/CollectionInfoPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/collections/CollectionInfoPopover.tsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/index.tsx -------------------------------------------------------------------------------- /frontend/src/layouts/DrawerLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/layouts/DrawerLayout.tsx -------------------------------------------------------------------------------- /frontend/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/logo.svg -------------------------------------------------------------------------------- /frontend/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/reportWebVitals.ts -------------------------------------------------------------------------------- /frontend/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/setupTests.ts -------------------------------------------------------------------------------- /frontend/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/types.ts -------------------------------------------------------------------------------- /frontend/src/widgets/ErrorMessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/widgets/ErrorMessageBox.tsx -------------------------------------------------------------------------------- /frontend/src/widgets/InfoMessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/widgets/InfoMessageBox.tsx -------------------------------------------------------------------------------- /frontend/src/widgets/LoadingMessageBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/src/widgets/LoadingMessageBox.tsx -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/local.yml -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/locale/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/manage.py -------------------------------------------------------------------------------- /merge_production_dotenvs_in_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/merge_production_dotenvs_in_dotenv.py -------------------------------------------------------------------------------- /production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/production.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/setup.cfg -------------------------------------------------------------------------------- /test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/test.yml -------------------------------------------------------------------------------- /test_file.txt: -------------------------------------------------------------------------------- 1 | test content 2 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/fixtures/model_58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/tests/fixtures/model_58.json -------------------------------------------------------------------------------- /tests/test_merge_production_dotenvs_in_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/tests/test_merge_production_dotenvs_in_dotenv.py -------------------------------------------------------------------------------- /tests/test_ninja_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/tests/test_ninja_endpoints.py -------------------------------------------------------------------------------- /tests/test_websocket_jwt_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JSv4/Delphic/HEAD/tests/test_websocket_jwt_auth.py --------------------------------------------------------------------------------