├── .env.example ├── .flake8 ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-deploy.yaml │ ├── linters.yml │ └── tests.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── backend ├── .env.dev ├── Dockerfile ├── dataset │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── create_translation_data.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_sentencetext_lang_id.py │ │ ├── 0003_alter_translationpair_input_lang_id_and_more.py │ │ ├── 0004_auto_20220319_1022.py │ │ ├── 0004_ocr.py │ │ ├── 0005_auto_20220319_0956.py │ │ ├── 0005_auto_20220319_1023.py │ │ ├── 0006_auto_20220319_1007.py │ │ ├── 0006_auto_20220319_1023.py │ │ ├── 0007_auto_20220323_1239.py │ │ ├── 0007_auto_20220324_0755.py │ │ ├── 0008_merge_20220324_0815.py │ │ ├── 0009_auto_20220325_0529.py │ │ ├── 0010_auto_20220325_0614.py │ │ ├── 0011_ocrdocument_prediction_json.py │ │ ├── 0012_auto_20220328_1121.py │ │ ├── 0013_auto_20220329_0910.py │ │ ├── 0014_auto_20220329_0911.py │ │ ├── 0015_auto_20220406_0806.py │ │ ├── 0016_auto_20220413_0935.py │ │ ├── 0017_auto_20220429_0542.py │ │ ├── 0018_auto_20220429_0635.py │ │ ├── 0019_auto_20220429_0635.py │ │ ├── 0020_auto_20220429_0636.py │ │ ├── 0021_datasetbase_parent_data.py │ │ ├── 0022_translationpair_context.py │ │ ├── 0023_auto_20220502_1329.py │ │ ├── 0024_auto_20220516_0657.py │ │ ├── 0025_auto_20220516_0721.py │ │ ├── 0026_auto_20220516_1206.py │ │ ├── 0027_auto_20220613_1212.py │ │ ├── 0028_auto_20220617_1309.py │ │ ├── 0029_auto_20220901_0844.py │ │ ├── 0030_auto_20220902_0808.py │ │ ├── 0031_auto_20220912_1759.py │ │ ├── 0032_alter_datasetbase_id.py │ │ ├── 0033_auto_20221112_0340.py │ │ ├── 0034_auto_20221124_0443.py │ │ ├── 0035_speechconversation_prediction_json.py │ │ ├── 0036_alter_sentencetext_domain.py │ │ ├── 0037_translationpair_domain.py │ │ ├── 0039_auto_20230426_1439.py │ │ ├── 0040_datasetbase_draft_data_json.py │ │ ├── 0041_auto_20230613_0737.py │ │ ├── 0042_remove_ocrdocument_prediction_json.py │ │ ├── 0043_auto_20230619_0811.py │ │ ├── 0044_auto_20240227_1431.py │ │ ├── 0045_alter_ocrdocument_ocr_domain.py │ │ ├── 0045_auto_20240321_0949.py │ │ ├── 0046_merge_20240416_2233.py │ │ ├── 0047_speechconversation_final_transcribed_json.py │ │ ├── 0048_ocrdocument_bboxes_relation_prediction_json.py │ │ └── __init__.py │ ├── mixins.py │ ├── models.py │ ├── permissions.py │ ├── resources.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── deploy │ ├── requirements.txt │ └── setup-shoonya-script.sh ├── entrypoint.sh ├── filters │ ├── __init__.py │ └── filter.py ├── functions │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── loging │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── temp.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── manage.py ├── notifications │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20231013_0926.py │ │ ├── 0003_auto_20231122_2154.py │ │ ├── 0004_notification_seen.py │ │ ├── 0005_auto_20231221_1024.py │ │ ├── 0006_auto_20240326_0437.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── organizations │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20220214_0533.py │ │ ├── 0003_auto_20220317_0924.py │ │ ├── 0003_auto_20220319_0907.py │ │ ├── 0003_auto_20220320_0726.py │ │ ├── 0004_merge_20220324_0814.py │ │ ├── 0005_merge_20220328_0340.py │ │ ├── 0006_auto_20220328_0503.py │ │ ├── 0007_auto_20220329_1309.py │ │ ├── 0008_auto_20220930_0451.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── projects │ ├── __init__.py │ ├── admin.py │ ├── annotation_registry.py │ ├── apps.py │ ├── decorators.py │ ├── label_studio_jsx_files │ │ ├── audio │ │ │ ├── acoustic_transcription.jsx │ │ │ ├── audio_segmentation.jsx │ │ │ └── audio_transcription.jsx │ │ ├── conversation │ │ │ ├── conversation_translation.jsx │ │ │ └── conversation_verification.jsx │ │ ├── monolingual │ │ │ ├── contextual_sentence_verification.jsx │ │ │ ├── contextual_sentence_verification_and_domain_classifcation.jsx │ │ │ └── sentence_splitting.jsx │ │ ├── ocr │ │ │ └── ocr_transcription.jsx │ │ └── translation │ │ │ ├── contextual_translation_editing.jsx │ │ │ ├── monolingual_translation.jsx │ │ │ ├── semantic_textual_similarity_scale5.jsx │ │ │ └── translation_editing.jsx │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── check_integrity.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_remove_project_dataset_id.py │ │ ├── 0003_alter_project_created_by.py │ │ ├── 0004_project_dataset_id.py │ │ ├── 0005_alter_project_dataset_id.py │ │ ├── 0006_auto_20220304_0645.py │ │ ├── 0007_auto_20220317_0924.py │ │ ├── 0007_auto_20220319_0907.py │ │ ├── 0007_auto_20220320_0729.py │ │ ├── 0008_auto_20220324_0755.py │ │ ├── 0008_project_variable_parameters.py │ │ ├── 0009_auto_20220323_1429.py │ │ ├── 0010_merge_20220324_0815.py │ │ ├── 0011_auto_20220325_0529.py │ │ ├── 0011_merge_20220328_0340.py │ │ ├── 0012_auto_20220325_0614.py │ │ ├── 0013_auto_20220325_0625.py │ │ ├── 0014_merge_20220328_0807.py │ │ ├── 0015_auto_20220329_1309.py │ │ ├── 0016_project_maximum_annotators.py │ │ ├── 0017_auto_20220404_0603.py │ │ ├── 0018_auto_20220404_0604.py │ │ ├── 0019_auto_20220430_0708.py │ │ ├── 0020_auto_20220501_1004.py │ │ ├── 0021_auto_20220502_1329.py │ │ ├── 0022_auto_20220516_1206.py │ │ ├── 0023_auto_20220613_1320.py │ │ ├── 0024_auto_20220616_1512.py │ │ ├── 0024_project_frozen_users_alter_project_id.py │ │ ├── 0025_project_src_language_project_tgt_language.py │ │ ├── 0026_alter_project_src_language_and_more.py │ │ ├── 0027_auto_20220627_0746.py │ │ ├── 0027_project_created_at.py │ │ ├── 0028_projecttaskrequestlock_lock_context.py │ │ ├── 0029_auto_20220722_1216.py │ │ ├── 0030_auto_20220901_0835.py │ │ ├── 0031_auto_20220930_0451.py │ │ ├── 0032_alter_project_project_type.py │ │ ├── 0033_project_published_at.py │ │ ├── 0035_alter_project_project_type.py │ │ ├── 0037_alter_project_project_type.py │ │ ├── 0039_alter_project_project_type.py │ │ ├── 0040_alter_project_project_type.py │ │ ├── 0041_auto_20230313_1307.py │ │ ├── 0043_remove_project_enable_task_reviews.py │ │ ├── 0044_alter_projecttaskrequestlock_lock_context.py │ │ ├── 0045_alter_project_project_type.py │ │ ├── 0046_alter_project_project_type.py │ │ ├── 0047_alter_project_project_type.py │ │ ├── 0048_alter_project_project_type.py │ │ ├── 0049_alter_project_project_type.py │ │ ├── 0050_alter_project_project_type.py │ │ ├── 0051_alter_project_project_type.py │ │ ├── 0052_alter_project_project_type.py │ │ ├── 0053_alter_project_project_type.py │ │ ├── 0054_alter_project_project_type.py │ │ └── __init__.py │ ├── models.py │ ├── project_registry.yaml │ ├── registry_helper.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── shoonya_backend │ ├── __init__.py │ ├── asgi.py │ ├── celery.py │ ├── flowerconfig.py │ ├── locks.py │ ├── log_transfer.py │ ├── logger.py │ ├── mixins.py │ ├── pagination.py │ ├── settings.py │ ├── tasks.py │ ├── urls.py │ └── wsgi.py ├── tasks │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20220318_0807.py │ │ ├── 0003_auto_20220318_0809.py │ │ ├── 0004_auto_20220323_0949.py │ │ ├── 0005_auto_20220323_1042.py │ │ ├── 0006_auto_20220323_1043.py │ │ ├── 0007_auto_20220323_1044.py │ │ ├── 0008_auto_20220323_1414.py │ │ ├── 0009_auto_20220323_1429.py │ │ ├── 0010_prediction.py │ │ ├── 0011_auto_20220329_0819.py │ │ ├── 0012_auto_20220329_0820.py │ │ ├── 0013_task_metadata_json.py │ │ ├── 0014_auto_20220401_0657.py │ │ ├── 0015_auto_20220401_0700.py │ │ ├── 0016_tasklock.py │ │ ├── 0017_auto_20220411_0907.py │ │ ├── 0019_auto_20220429_0643.py │ │ ├── 0020_merge_20220430_0708.py │ │ ├── 0021_auto_20220430_0708.py │ │ ├── 0022_auto_20220502_1329.py │ │ ├── 0023_auto_20220518_0845.py │ │ ├── 0024_auto_20220518_0847.py │ │ ├── 0025_auto_20220606_1629.py │ │ ├── 0026_annotation_notes_alter_tasklock_id.py │ │ ├── 0027_alter_annotation_notes.py │ │ ├── 0028_auto_20220617_0730.py │ │ ├── 0029_auto_20220624_1450.py │ │ ├── 0029_merge_20220624_1106.py │ │ ├── 0030_auto_20220707_0959.py │ │ ├── 0031_auto_20220812_0936.py │ │ ├── 0033_delete_tasklock.py │ │ ├── 0034_auto_20230127_1221.py │ │ ├── 0035_auto_20230127_1226.py │ │ ├── 0037_alter_annotation_annotation_status.py │ │ ├── 0038_auto_20230313_1354.py │ │ ├── 0039_annotation_annotation_type.py │ │ ├── 0041_task_revision_loop_count.py │ │ ├── 0042_task_super_check_user.py │ │ ├── 0043_annotation_supercheck_notes.py │ │ ├── 0044_annotation_annotation_source.py │ │ ├── 0045_annotation_annotated_at.py │ │ ├── 0046_auto_20230727_0728.py │ │ ├── 0047_alter_annotation_annotated_at.py │ │ ├── 0048_alter_annotation_unique_together.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── user_reports.py ├── users │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_user_organization_id.py │ │ ├── 0003_user_has_accepted_invite.py │ │ ├── 0004_remove_user_invite_accepted.py │ │ ├── 0005_auto_20220303_1122.py │ │ ├── 0005_rename_organization_id_user_organization.py │ │ ├── 0006_alter_user_lang_id.py │ │ ├── 0007_merge_20220305_1457.py │ │ ├── 0008_auto_20220317_0924.py │ │ ├── 0008_auto_20220319_0907.py │ │ ├── 0008_auto_20220320_0726.py │ │ ├── 0009_merge_20220324_0815.py │ │ ├── 0010_merge_20220328_0340.py │ │ ├── 0011_auto_20220413_0935.py │ │ ├── 0012_remove_user_maximum_annotations_per_day.py │ │ ├── 0013_auto_20220429_0542.py │ │ ├── 0014_auto_20220502_1329.py │ │ ├── 0015_remove_user_language.py │ │ ├── 0016_user_languages.py │ │ ├── 0017_auto_20220516_0657.py │ │ ├── 0018_auto_20220629_1425.py │ │ ├── 0019_auto_20220929_1219.py │ │ ├── 0020_user_participation_type.py │ │ ├── 0021_auto_20221124_1042.py │ │ ├── 0023_alter_user_role.py │ │ ├── 0025_remove_user_email_org_unique.py │ │ ├── 0026_alter_user_participation_type.py │ │ ├── 0027_alter_user_participation_type.py │ │ ├── 0028_customperiodictask.py │ │ ├── 0029_user_prefer_cl_ui.py │ │ ├── 0030_alter_user_profile_photo.py │ │ ├── 0031_user_notification_limit.py │ │ ├── 0032_auto_20240417_1028.py │ │ ├── 0033_rename_approved_by_user_invited_by.py │ │ ├── 0034_alter_user_is_approved.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── utils │ ├── __init__.py │ ├── azure_translate.py │ ├── blob_functions.py │ ├── constants.py │ ├── convert_result_to_chitralekha_format.py │ ├── custom_bulk_create.py │ ├── date_time_conversions.py │ ├── email_template.py │ ├── filter_tasks_by_ann_type.py │ ├── monolingual │ │ ├── __init__.py │ │ └── sentence_splitter.py │ ├── pagination.py │ └── search.py └── workspaces │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── decorators.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20220317_0924.py │ ├── 0002_auto_20220317_1527.py │ ├── 0002_auto_20220319_0907.py │ ├── 0003_auto_20220320_0635.py │ ├── 0004_auto_20220320_0729.py │ ├── 0004_merge_20220324_0642.py │ ├── 0005_merge_20220324_0815.py │ ├── 0006_merge_20220328_0340.py │ ├── 0007_auto_20220328_0621.py │ ├── 0008_auto_20220426_0539.py │ ├── 0008_auto_20220426_0850.py │ ├── 0009_merge_20220516_0656.py │ ├── 0010_workspace_created_at.py │ ├── 0011_auto_20220805_0940.py │ ├── 0012_alter_workspace_id.py │ ├── 0013_workspace_frozen_users.py │ ├── 0014_workspace_public_analytics.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tasks.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── certbot ├── Dockerfile └── certbot.sh ├── cron ├── Dockerfile └── renew_certs.sh ├── docker-compose-dev-elasticsearch.yml ├── docker-compose-dev.yml ├── docker-compose-local.yml ├── docker-compose-prod.yml ├── docs └── .keep ├── elasticsearch └── elasticsearch.yml ├── logstash_dev.conf ├── logstash_prod.conf └── nginx ├── Dockerfile ├── default.conf ├── gzip.conf ├── hsts.conf ├── nginx.sh ├── options-ssl-nginx.conf └── site.conf.tpl /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E501 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.github/workflows/build-deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/.env.dev -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dataset/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/admin.py -------------------------------------------------------------------------------- /backend/dataset/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/apps.py -------------------------------------------------------------------------------- /backend/dataset/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dataset/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dataset/management/commands/create_translation_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/management/commands/create_translation_data.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0002_alter_sentencetext_lang_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0002_alter_sentencetext_lang_id.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0003_alter_translationpair_input_lang_id_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0003_alter_translationpair_input_lang_id_and_more.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0004_auto_20220319_1022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0004_auto_20220319_1022.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0004_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0004_ocr.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0005_auto_20220319_0956.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0005_auto_20220319_0956.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0005_auto_20220319_1023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0005_auto_20220319_1023.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0006_auto_20220319_1007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0006_auto_20220319_1007.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0006_auto_20220319_1023.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0006_auto_20220319_1023.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0007_auto_20220323_1239.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0007_auto_20220323_1239.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0007_auto_20220324_0755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0007_auto_20220324_0755.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0008_merge_20220324_0815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0008_merge_20220324_0815.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0009_auto_20220325_0529.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0009_auto_20220325_0529.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0010_auto_20220325_0614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0010_auto_20220325_0614.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0011_ocrdocument_prediction_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0011_ocrdocument_prediction_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0012_auto_20220328_1121.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0012_auto_20220328_1121.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0013_auto_20220329_0910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0013_auto_20220329_0910.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0014_auto_20220329_0911.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0014_auto_20220329_0911.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0015_auto_20220406_0806.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0015_auto_20220406_0806.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0016_auto_20220413_0935.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0016_auto_20220413_0935.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0017_auto_20220429_0542.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0017_auto_20220429_0542.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0018_auto_20220429_0635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0018_auto_20220429_0635.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0019_auto_20220429_0635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0019_auto_20220429_0635.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0020_auto_20220429_0636.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0020_auto_20220429_0636.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0021_datasetbase_parent_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0021_datasetbase_parent_data.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0022_translationpair_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0022_translationpair_context.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0023_auto_20220502_1329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0023_auto_20220502_1329.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0024_auto_20220516_0657.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0024_auto_20220516_0657.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0025_auto_20220516_0721.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0025_auto_20220516_0721.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0026_auto_20220516_1206.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0026_auto_20220516_1206.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0027_auto_20220613_1212.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0027_auto_20220613_1212.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0028_auto_20220617_1309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0028_auto_20220617_1309.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0029_auto_20220901_0844.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0029_auto_20220901_0844.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0030_auto_20220902_0808.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0030_auto_20220902_0808.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0031_auto_20220912_1759.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0031_auto_20220912_1759.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0032_alter_datasetbase_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0032_alter_datasetbase_id.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0033_auto_20221112_0340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0033_auto_20221112_0340.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0034_auto_20221124_0443.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0034_auto_20221124_0443.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0035_speechconversation_prediction_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0035_speechconversation_prediction_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0036_alter_sentencetext_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0036_alter_sentencetext_domain.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0037_translationpair_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0037_translationpair_domain.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0039_auto_20230426_1439.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0039_auto_20230426_1439.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0040_datasetbase_draft_data_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0040_datasetbase_draft_data_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0041_auto_20230613_0737.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0041_auto_20230613_0737.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0042_remove_ocrdocument_prediction_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0042_remove_ocrdocument_prediction_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0043_auto_20230619_0811.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0043_auto_20230619_0811.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0044_auto_20240227_1431.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0044_auto_20240227_1431.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0045_alter_ocrdocument_ocr_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0045_alter_ocrdocument_ocr_domain.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0045_auto_20240321_0949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0045_auto_20240321_0949.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0046_merge_20240416_2233.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0046_merge_20240416_2233.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0047_speechconversation_final_transcribed_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0047_speechconversation_final_transcribed_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/0048_ocrdocument_bboxes_relation_prediction_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/migrations/0048_ocrdocument_bboxes_relation_prediction_json.py -------------------------------------------------------------------------------- /backend/dataset/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/dataset/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/mixins.py -------------------------------------------------------------------------------- /backend/dataset/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/models.py -------------------------------------------------------------------------------- /backend/dataset/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/permissions.py -------------------------------------------------------------------------------- /backend/dataset/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/resources.py -------------------------------------------------------------------------------- /backend/dataset/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/serializers.py -------------------------------------------------------------------------------- /backend/dataset/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/tasks.py -------------------------------------------------------------------------------- /backend/dataset/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/tests.py -------------------------------------------------------------------------------- /backend/dataset/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/urls.py -------------------------------------------------------------------------------- /backend/dataset/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/dataset/views.py -------------------------------------------------------------------------------- /backend/deploy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/deploy/requirements.txt -------------------------------------------------------------------------------- /backend/deploy/setup-shoonya-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/deploy/setup-shoonya-script.sh -------------------------------------------------------------------------------- /backend/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/entrypoint.sh -------------------------------------------------------------------------------- /backend/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/filters/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/filters/filter.py -------------------------------------------------------------------------------- /backend/functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/functions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/admin.py -------------------------------------------------------------------------------- /backend/functions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/apps.py -------------------------------------------------------------------------------- /backend/functions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/functions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/models.py -------------------------------------------------------------------------------- /backend/functions/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/tasks.py -------------------------------------------------------------------------------- /backend/functions/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/tests.py -------------------------------------------------------------------------------- /backend/functions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/urls.py -------------------------------------------------------------------------------- /backend/functions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/utils.py -------------------------------------------------------------------------------- /backend/functions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/functions/views.py -------------------------------------------------------------------------------- /backend/loging/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/loging/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/admin.py -------------------------------------------------------------------------------- /backend/loging/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/apps.py -------------------------------------------------------------------------------- /backend/loging/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/loging/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/models.py -------------------------------------------------------------------------------- /backend/loging/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/serializers.py -------------------------------------------------------------------------------- /backend/loging/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/tasks.py -------------------------------------------------------------------------------- /backend/loging/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/temp.py -------------------------------------------------------------------------------- /backend/loging/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/tests.py -------------------------------------------------------------------------------- /backend/loging/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/urls.py -------------------------------------------------------------------------------- /backend/loging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/utils.py -------------------------------------------------------------------------------- /backend/loging/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/loging/views.py -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/manage.py -------------------------------------------------------------------------------- /backend/notifications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/notifications/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/admin.py -------------------------------------------------------------------------------- /backend/notifications/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/apps.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0002_auto_20231013_0926.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0002_auto_20231013_0926.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0003_auto_20231122_2154.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0003_auto_20231122_2154.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0004_notification_seen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0004_notification_seen.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0005_auto_20231221_1024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0005_auto_20231221_1024.py -------------------------------------------------------------------------------- /backend/notifications/migrations/0006_auto_20240326_0437.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/migrations/0006_auto_20240326_0437.py -------------------------------------------------------------------------------- /backend/notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/models.py -------------------------------------------------------------------------------- /backend/notifications/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/serializers.py -------------------------------------------------------------------------------- /backend/notifications/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/tasks.py -------------------------------------------------------------------------------- /backend/notifications/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/tests.py -------------------------------------------------------------------------------- /backend/notifications/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/urls.py -------------------------------------------------------------------------------- /backend/notifications/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/utils.py -------------------------------------------------------------------------------- /backend/notifications/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/notifications/views.py -------------------------------------------------------------------------------- /backend/organizations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/organizations/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/admin.py -------------------------------------------------------------------------------- /backend/organizations/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/apps.py -------------------------------------------------------------------------------- /backend/organizations/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/decorators.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0002_auto_20220214_0533.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0002_auto_20220214_0533.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0003_auto_20220317_0924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0003_auto_20220317_0924.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0003_auto_20220319_0907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0003_auto_20220319_0907.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0003_auto_20220320_0726.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0003_auto_20220320_0726.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0004_merge_20220324_0814.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0004_merge_20220324_0814.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0005_merge_20220328_0340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0005_merge_20220328_0340.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0006_auto_20220328_0503.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0006_auto_20220328_0503.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0007_auto_20220329_1309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0007_auto_20220329_1309.py -------------------------------------------------------------------------------- /backend/organizations/migrations/0008_auto_20220930_0451.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/migrations/0008_auto_20220930_0451.py -------------------------------------------------------------------------------- /backend/organizations/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/organizations/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/models.py -------------------------------------------------------------------------------- /backend/organizations/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/serializers.py -------------------------------------------------------------------------------- /backend/organizations/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/tasks.py -------------------------------------------------------------------------------- /backend/organizations/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/tests.py -------------------------------------------------------------------------------- /backend/organizations/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/urls.py -------------------------------------------------------------------------------- /backend/organizations/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/organizations/views.py -------------------------------------------------------------------------------- /backend/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/admin.py -------------------------------------------------------------------------------- /backend/projects/annotation_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/annotation_registry.py -------------------------------------------------------------------------------- /backend/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/apps.py -------------------------------------------------------------------------------- /backend/projects/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/decorators.py -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/audio/acoustic_transcription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/audio/acoustic_transcription.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/audio/audio_segmentation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/audio/audio_segmentation.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/audio/audio_transcription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/audio/audio_transcription.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/conversation/conversation_translation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/conversation/conversation_translation.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/conversation/conversation_verification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/conversation/conversation_verification.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/monolingual/contextual_sentence_verification.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/monolingual/contextual_sentence_verification.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/monolingual/contextual_sentence_verification_and_domain_classifcation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/monolingual/contextual_sentence_verification_and_domain_classifcation.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/monolingual/sentence_splitting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/monolingual/sentence_splitting.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/ocr/ocr_transcription.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/ocr/ocr_transcription.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/translation/contextual_translation_editing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/translation/contextual_translation_editing.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/translation/monolingual_translation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/translation/monolingual_translation.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/translation/semantic_textual_similarity_scale5.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/translation/semantic_textual_similarity_scale5.jsx -------------------------------------------------------------------------------- /backend/projects/label_studio_jsx_files/translation/translation_editing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/label_studio_jsx_files/translation/translation_editing.jsx -------------------------------------------------------------------------------- /backend/projects/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/projects/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/projects/management/commands/check_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/management/commands/check_integrity.py -------------------------------------------------------------------------------- /backend/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/projects/migrations/0002_remove_project_dataset_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0002_remove_project_dataset_id.py -------------------------------------------------------------------------------- /backend/projects/migrations/0003_alter_project_created_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0003_alter_project_created_by.py -------------------------------------------------------------------------------- /backend/projects/migrations/0004_project_dataset_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0004_project_dataset_id.py -------------------------------------------------------------------------------- /backend/projects/migrations/0005_alter_project_dataset_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0005_alter_project_dataset_id.py -------------------------------------------------------------------------------- /backend/projects/migrations/0006_auto_20220304_0645.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0006_auto_20220304_0645.py -------------------------------------------------------------------------------- /backend/projects/migrations/0007_auto_20220317_0924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0007_auto_20220317_0924.py -------------------------------------------------------------------------------- /backend/projects/migrations/0007_auto_20220319_0907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0007_auto_20220319_0907.py -------------------------------------------------------------------------------- /backend/projects/migrations/0007_auto_20220320_0729.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0007_auto_20220320_0729.py -------------------------------------------------------------------------------- /backend/projects/migrations/0008_auto_20220324_0755.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0008_auto_20220324_0755.py -------------------------------------------------------------------------------- /backend/projects/migrations/0008_project_variable_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0008_project_variable_parameters.py -------------------------------------------------------------------------------- /backend/projects/migrations/0009_auto_20220323_1429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0009_auto_20220323_1429.py -------------------------------------------------------------------------------- /backend/projects/migrations/0010_merge_20220324_0815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0010_merge_20220324_0815.py -------------------------------------------------------------------------------- /backend/projects/migrations/0011_auto_20220325_0529.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0011_auto_20220325_0529.py -------------------------------------------------------------------------------- /backend/projects/migrations/0011_merge_20220328_0340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0011_merge_20220328_0340.py -------------------------------------------------------------------------------- /backend/projects/migrations/0012_auto_20220325_0614.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0012_auto_20220325_0614.py -------------------------------------------------------------------------------- /backend/projects/migrations/0013_auto_20220325_0625.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0013_auto_20220325_0625.py -------------------------------------------------------------------------------- /backend/projects/migrations/0014_merge_20220328_0807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0014_merge_20220328_0807.py -------------------------------------------------------------------------------- /backend/projects/migrations/0015_auto_20220329_1309.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0015_auto_20220329_1309.py -------------------------------------------------------------------------------- /backend/projects/migrations/0016_project_maximum_annotators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0016_project_maximum_annotators.py -------------------------------------------------------------------------------- /backend/projects/migrations/0017_auto_20220404_0603.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0017_auto_20220404_0603.py -------------------------------------------------------------------------------- /backend/projects/migrations/0018_auto_20220404_0604.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0018_auto_20220404_0604.py -------------------------------------------------------------------------------- /backend/projects/migrations/0019_auto_20220430_0708.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0019_auto_20220430_0708.py -------------------------------------------------------------------------------- /backend/projects/migrations/0020_auto_20220501_1004.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0020_auto_20220501_1004.py -------------------------------------------------------------------------------- /backend/projects/migrations/0021_auto_20220502_1329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0021_auto_20220502_1329.py -------------------------------------------------------------------------------- /backend/projects/migrations/0022_auto_20220516_1206.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0022_auto_20220516_1206.py -------------------------------------------------------------------------------- /backend/projects/migrations/0023_auto_20220613_1320.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0023_auto_20220613_1320.py -------------------------------------------------------------------------------- /backend/projects/migrations/0024_auto_20220616_1512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0024_auto_20220616_1512.py -------------------------------------------------------------------------------- /backend/projects/migrations/0024_project_frozen_users_alter_project_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0024_project_frozen_users_alter_project_id.py -------------------------------------------------------------------------------- /backend/projects/migrations/0025_project_src_language_project_tgt_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0025_project_src_language_project_tgt_language.py -------------------------------------------------------------------------------- /backend/projects/migrations/0026_alter_project_src_language_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0026_alter_project_src_language_and_more.py -------------------------------------------------------------------------------- /backend/projects/migrations/0027_auto_20220627_0746.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0027_auto_20220627_0746.py -------------------------------------------------------------------------------- /backend/projects/migrations/0027_project_created_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0027_project_created_at.py -------------------------------------------------------------------------------- /backend/projects/migrations/0028_projecttaskrequestlock_lock_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0028_projecttaskrequestlock_lock_context.py -------------------------------------------------------------------------------- /backend/projects/migrations/0029_auto_20220722_1216.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0029_auto_20220722_1216.py -------------------------------------------------------------------------------- /backend/projects/migrations/0030_auto_20220901_0835.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0030_auto_20220901_0835.py -------------------------------------------------------------------------------- /backend/projects/migrations/0031_auto_20220930_0451.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0031_auto_20220930_0451.py -------------------------------------------------------------------------------- /backend/projects/migrations/0032_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0032_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0033_project_published_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0033_project_published_at.py -------------------------------------------------------------------------------- /backend/projects/migrations/0035_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0035_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0037_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0037_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0039_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0039_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0040_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0040_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0041_auto_20230313_1307.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0041_auto_20230313_1307.py -------------------------------------------------------------------------------- /backend/projects/migrations/0043_remove_project_enable_task_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0043_remove_project_enable_task_reviews.py -------------------------------------------------------------------------------- /backend/projects/migrations/0044_alter_projecttaskrequestlock_lock_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0044_alter_projecttaskrequestlock_lock_context.py -------------------------------------------------------------------------------- /backend/projects/migrations/0045_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0045_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0046_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0046_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0047_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0047_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0048_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0048_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0049_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0049_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0050_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0050_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0051_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0051_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0052_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0052_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0053_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0053_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/0054_alter_project_project_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/migrations/0054_alter_project_project_type.py -------------------------------------------------------------------------------- /backend/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/models.py -------------------------------------------------------------------------------- /backend/projects/project_registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/project_registry.yaml -------------------------------------------------------------------------------- /backend/projects/registry_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/registry_helper.py -------------------------------------------------------------------------------- /backend/projects/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/serializers.py -------------------------------------------------------------------------------- /backend/projects/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/tasks.py -------------------------------------------------------------------------------- /backend/projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/tests.py -------------------------------------------------------------------------------- /backend/projects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/urls.py -------------------------------------------------------------------------------- /backend/projects/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/utils.py -------------------------------------------------------------------------------- /backend/projects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/projects/views.py -------------------------------------------------------------------------------- /backend/shoonya_backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/__init__.py -------------------------------------------------------------------------------- /backend/shoonya_backend/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/asgi.py -------------------------------------------------------------------------------- /backend/shoonya_backend/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/celery.py -------------------------------------------------------------------------------- /backend/shoonya_backend/flowerconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/flowerconfig.py -------------------------------------------------------------------------------- /backend/shoonya_backend/locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/locks.py -------------------------------------------------------------------------------- /backend/shoonya_backend/log_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/log_transfer.py -------------------------------------------------------------------------------- /backend/shoonya_backend/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/logger.py -------------------------------------------------------------------------------- /backend/shoonya_backend/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/mixins.py -------------------------------------------------------------------------------- /backend/shoonya_backend/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/pagination.py -------------------------------------------------------------------------------- /backend/shoonya_backend/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/settings.py -------------------------------------------------------------------------------- /backend/shoonya_backend/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/tasks.py -------------------------------------------------------------------------------- /backend/shoonya_backend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/urls.py -------------------------------------------------------------------------------- /backend/shoonya_backend/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/shoonya_backend/wsgi.py -------------------------------------------------------------------------------- /backend/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tasks/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/admin.py -------------------------------------------------------------------------------- /backend/tasks/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/apps.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0002_auto_20220318_0807.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0002_auto_20220318_0807.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0003_auto_20220318_0809.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0003_auto_20220318_0809.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0004_auto_20220323_0949.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0004_auto_20220323_0949.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0005_auto_20220323_1042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0005_auto_20220323_1042.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0006_auto_20220323_1043.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0006_auto_20220323_1043.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0007_auto_20220323_1044.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0007_auto_20220323_1044.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0008_auto_20220323_1414.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0008_auto_20220323_1414.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0009_auto_20220323_1429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0009_auto_20220323_1429.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0010_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0010_prediction.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0011_auto_20220329_0819.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0011_auto_20220329_0819.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0012_auto_20220329_0820.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0012_auto_20220329_0820.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0013_task_metadata_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0013_task_metadata_json.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0014_auto_20220401_0657.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0014_auto_20220401_0657.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0015_auto_20220401_0700.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0015_auto_20220401_0700.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0016_tasklock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0016_tasklock.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0017_auto_20220411_0907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0017_auto_20220411_0907.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0019_auto_20220429_0643.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0019_auto_20220429_0643.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0020_merge_20220430_0708.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0020_merge_20220430_0708.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0021_auto_20220430_0708.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0021_auto_20220430_0708.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0022_auto_20220502_1329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0022_auto_20220502_1329.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0023_auto_20220518_0845.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0023_auto_20220518_0845.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0024_auto_20220518_0847.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0024_auto_20220518_0847.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0025_auto_20220606_1629.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0025_auto_20220606_1629.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0026_annotation_notes_alter_tasklock_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0026_annotation_notes_alter_tasklock_id.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0027_alter_annotation_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0027_alter_annotation_notes.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0028_auto_20220617_0730.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0028_auto_20220617_0730.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0029_auto_20220624_1450.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0029_auto_20220624_1450.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0029_merge_20220624_1106.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0029_merge_20220624_1106.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0030_auto_20220707_0959.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0030_auto_20220707_0959.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0031_auto_20220812_0936.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0031_auto_20220812_0936.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0033_delete_tasklock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0033_delete_tasklock.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0034_auto_20230127_1221.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0034_auto_20230127_1221.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0035_auto_20230127_1226.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0035_auto_20230127_1226.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0037_alter_annotation_annotation_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0037_alter_annotation_annotation_status.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0038_auto_20230313_1354.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0038_auto_20230313_1354.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0039_annotation_annotation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0039_annotation_annotation_type.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0041_task_revision_loop_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0041_task_revision_loop_count.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0042_task_super_check_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0042_task_super_check_user.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0043_annotation_supercheck_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0043_annotation_supercheck_notes.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0044_annotation_annotation_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0044_annotation_annotation_source.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0045_annotation_annotated_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0045_annotation_annotated_at.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0046_auto_20230727_0728.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0046_auto_20230727_0728.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0047_alter_annotation_annotated_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0047_alter_annotation_annotated_at.py -------------------------------------------------------------------------------- /backend/tasks/migrations/0048_alter_annotation_unique_together.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/migrations/0048_alter_annotation_unique_together.py -------------------------------------------------------------------------------- /backend/tasks/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/tasks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/models.py -------------------------------------------------------------------------------- /backend/tasks/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/serializers.py -------------------------------------------------------------------------------- /backend/tasks/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/tests.py -------------------------------------------------------------------------------- /backend/tasks/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/urls.py -------------------------------------------------------------------------------- /backend/tasks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/utils.py -------------------------------------------------------------------------------- /backend/tasks/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/tasks/views.py -------------------------------------------------------------------------------- /backend/user_reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/user_reports.py -------------------------------------------------------------------------------- /backend/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/admin.py -------------------------------------------------------------------------------- /backend/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/apps.py -------------------------------------------------------------------------------- /backend/users/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/managers.py -------------------------------------------------------------------------------- /backend/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/users/migrations/0002_user_organization_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0002_user_organization_id.py -------------------------------------------------------------------------------- /backend/users/migrations/0003_user_has_accepted_invite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0003_user_has_accepted_invite.py -------------------------------------------------------------------------------- /backend/users/migrations/0004_remove_user_invite_accepted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0004_remove_user_invite_accepted.py -------------------------------------------------------------------------------- /backend/users/migrations/0005_auto_20220303_1122.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0005_auto_20220303_1122.py -------------------------------------------------------------------------------- /backend/users/migrations/0005_rename_organization_id_user_organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0005_rename_organization_id_user_organization.py -------------------------------------------------------------------------------- /backend/users/migrations/0006_alter_user_lang_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0006_alter_user_lang_id.py -------------------------------------------------------------------------------- /backend/users/migrations/0007_merge_20220305_1457.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0007_merge_20220305_1457.py -------------------------------------------------------------------------------- /backend/users/migrations/0008_auto_20220317_0924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0008_auto_20220317_0924.py -------------------------------------------------------------------------------- /backend/users/migrations/0008_auto_20220319_0907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0008_auto_20220319_0907.py -------------------------------------------------------------------------------- /backend/users/migrations/0008_auto_20220320_0726.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0008_auto_20220320_0726.py -------------------------------------------------------------------------------- /backend/users/migrations/0009_merge_20220324_0815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0009_merge_20220324_0815.py -------------------------------------------------------------------------------- /backend/users/migrations/0010_merge_20220328_0340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0010_merge_20220328_0340.py -------------------------------------------------------------------------------- /backend/users/migrations/0011_auto_20220413_0935.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0011_auto_20220413_0935.py -------------------------------------------------------------------------------- /backend/users/migrations/0012_remove_user_maximum_annotations_per_day.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0012_remove_user_maximum_annotations_per_day.py -------------------------------------------------------------------------------- /backend/users/migrations/0013_auto_20220429_0542.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0013_auto_20220429_0542.py -------------------------------------------------------------------------------- /backend/users/migrations/0014_auto_20220502_1329.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0014_auto_20220502_1329.py -------------------------------------------------------------------------------- /backend/users/migrations/0015_remove_user_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0015_remove_user_language.py -------------------------------------------------------------------------------- /backend/users/migrations/0016_user_languages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0016_user_languages.py -------------------------------------------------------------------------------- /backend/users/migrations/0017_auto_20220516_0657.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0017_auto_20220516_0657.py -------------------------------------------------------------------------------- /backend/users/migrations/0018_auto_20220629_1425.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0018_auto_20220629_1425.py -------------------------------------------------------------------------------- /backend/users/migrations/0019_auto_20220929_1219.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0019_auto_20220929_1219.py -------------------------------------------------------------------------------- /backend/users/migrations/0020_user_participation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0020_user_participation_type.py -------------------------------------------------------------------------------- /backend/users/migrations/0021_auto_20221124_1042.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0021_auto_20221124_1042.py -------------------------------------------------------------------------------- /backend/users/migrations/0023_alter_user_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0023_alter_user_role.py -------------------------------------------------------------------------------- /backend/users/migrations/0025_remove_user_email_org_unique.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0025_remove_user_email_org_unique.py -------------------------------------------------------------------------------- /backend/users/migrations/0026_alter_user_participation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0026_alter_user_participation_type.py -------------------------------------------------------------------------------- /backend/users/migrations/0027_alter_user_participation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0027_alter_user_participation_type.py -------------------------------------------------------------------------------- /backend/users/migrations/0028_customperiodictask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0028_customperiodictask.py -------------------------------------------------------------------------------- /backend/users/migrations/0029_user_prefer_cl_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0029_user_prefer_cl_ui.py -------------------------------------------------------------------------------- /backend/users/migrations/0030_alter_user_profile_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0030_alter_user_profile_photo.py -------------------------------------------------------------------------------- /backend/users/migrations/0031_user_notification_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0031_user_notification_limit.py -------------------------------------------------------------------------------- /backend/users/migrations/0032_auto_20240417_1028.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0032_auto_20240417_1028.py -------------------------------------------------------------------------------- /backend/users/migrations/0033_rename_approved_by_user_invited_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0033_rename_approved_by_user_invited_by.py -------------------------------------------------------------------------------- /backend/users/migrations/0034_alter_user_is_approved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/migrations/0034_alter_user_is_approved.py -------------------------------------------------------------------------------- /backend/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/models.py -------------------------------------------------------------------------------- /backend/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/serializers.py -------------------------------------------------------------------------------- /backend/users/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/tasks.py -------------------------------------------------------------------------------- /backend/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/tests.py -------------------------------------------------------------------------------- /backend/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/urls.py -------------------------------------------------------------------------------- /backend/users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/utils.py -------------------------------------------------------------------------------- /backend/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/users/views.py -------------------------------------------------------------------------------- /backend/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/azure_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/azure_translate.py -------------------------------------------------------------------------------- /backend/utils/blob_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/blob_functions.py -------------------------------------------------------------------------------- /backend/utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/constants.py -------------------------------------------------------------------------------- /backend/utils/convert_result_to_chitralekha_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/convert_result_to_chitralekha_format.py -------------------------------------------------------------------------------- /backend/utils/custom_bulk_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/custom_bulk_create.py -------------------------------------------------------------------------------- /backend/utils/date_time_conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/date_time_conversions.py -------------------------------------------------------------------------------- /backend/utils/email_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/email_template.py -------------------------------------------------------------------------------- /backend/utils/filter_tasks_by_ann_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/filter_tasks_by_ann_type.py -------------------------------------------------------------------------------- /backend/utils/monolingual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/utils/monolingual/sentence_splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/monolingual/sentence_splitter.py -------------------------------------------------------------------------------- /backend/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/pagination.py -------------------------------------------------------------------------------- /backend/utils/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/utils/search.py -------------------------------------------------------------------------------- /backend/workspaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/workspaces/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/admin.py -------------------------------------------------------------------------------- /backend/workspaces/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/apps.py -------------------------------------------------------------------------------- /backend/workspaces/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/decorators.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0001_initial.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0002_auto_20220317_0924.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0002_auto_20220317_0924.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0002_auto_20220317_1527.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0002_auto_20220317_1527.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0002_auto_20220319_0907.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0002_auto_20220319_0907.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0003_auto_20220320_0635.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0003_auto_20220320_0635.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0004_auto_20220320_0729.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0004_auto_20220320_0729.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0004_merge_20220324_0642.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0004_merge_20220324_0642.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0005_merge_20220324_0815.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0005_merge_20220324_0815.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0006_merge_20220328_0340.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0006_merge_20220328_0340.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0007_auto_20220328_0621.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0007_auto_20220328_0621.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0008_auto_20220426_0539.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0008_auto_20220426_0539.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0008_auto_20220426_0850.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0008_auto_20220426_0850.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0009_merge_20220516_0656.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0009_merge_20220516_0656.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0010_workspace_created_at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0010_workspace_created_at.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0011_auto_20220805_0940.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0011_auto_20220805_0940.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0012_alter_workspace_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0012_alter_workspace_id.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0013_workspace_frozen_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0013_workspace_frozen_users.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/0014_workspace_public_analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/migrations/0014_workspace_public_analytics.py -------------------------------------------------------------------------------- /backend/workspaces/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/workspaces/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/models.py -------------------------------------------------------------------------------- /backend/workspaces/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/serializers.py -------------------------------------------------------------------------------- /backend/workspaces/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/tasks.py -------------------------------------------------------------------------------- /backend/workspaces/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/tests.py -------------------------------------------------------------------------------- /backend/workspaces/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/urls.py -------------------------------------------------------------------------------- /backend/workspaces/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/backend/workspaces/views.py -------------------------------------------------------------------------------- /certbot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/certbot/Dockerfile -------------------------------------------------------------------------------- /certbot/certbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/certbot/certbot.sh -------------------------------------------------------------------------------- /cron/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/cron/Dockerfile -------------------------------------------------------------------------------- /cron/renew_certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/cron/renew_certs.sh -------------------------------------------------------------------------------- /docker-compose-dev-elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/docker-compose-dev-elasticsearch.yml -------------------------------------------------------------------------------- /docker-compose-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/docker-compose-dev.yml -------------------------------------------------------------------------------- /docker-compose-local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/docker-compose-local.yml -------------------------------------------------------------------------------- /docker-compose-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/docker-compose-prod.yml -------------------------------------------------------------------------------- /docs/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elasticsearch/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/elasticsearch/elasticsearch.yml -------------------------------------------------------------------------------- /logstash_dev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/logstash_dev.conf -------------------------------------------------------------------------------- /logstash_prod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/logstash_prod.conf -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/default.conf -------------------------------------------------------------------------------- /nginx/gzip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/gzip.conf -------------------------------------------------------------------------------- /nginx/hsts.conf: -------------------------------------------------------------------------------- 1 | add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always; -------------------------------------------------------------------------------- /nginx/nginx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/nginx.sh -------------------------------------------------------------------------------- /nginx/options-ssl-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/options-ssl-nginx.conf -------------------------------------------------------------------------------- /nginx/site.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AI4Bharat/Shoonya-Backend/HEAD/nginx/site.conf.tpl --------------------------------------------------------------------------------