├── .coveragerc ├── .dockerignore ├── .flake8 ├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── 01-question.md │ ├── 02-bug.md │ ├── 03-install.md │ └── 04-request.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app.json ├── app ├── .dockerignore ├── Dockerfile ├── __init__.py ├── api │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── exceptions.py │ ├── filters.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_project_single_class_classification.py │ │ ├── 0002_speech2text.py │ │ ├── 0003_merge_20200612_0205.py │ │ └── __init__.py │ ├── models.py │ ├── permissions.py │ ├── serializers.py │ ├── tests │ │ ├── __init__.py │ │ ├── data │ │ │ ├── classification.jsonl │ │ │ ├── example.csv │ │ │ ├── example.invalid.2.csv │ │ │ ├── example.invalid.2.xlsx │ │ │ ├── example.jsonl │ │ │ ├── example.txt │ │ │ ├── example.utf16.csv │ │ │ ├── example.xlsx │ │ │ ├── example_column_and_row_not_matching.csv │ │ │ ├── example_column_and_row_not_matching.xlsx │ │ │ ├── example_one_column.csv │ │ │ ├── example_one_column.xlsx │ │ │ ├── example_one_column_no_header.xlsx │ │ │ ├── example_out_of_order_columns.csv │ │ │ ├── invalid_labels.json │ │ │ ├── labeling.conll │ │ │ ├── labeling.invalid.conll │ │ │ ├── labeling.jsonl │ │ │ ├── labeling.trailing.conll │ │ │ ├── seq2seq.jsonl │ │ │ └── valid_labels.json │ │ ├── test_api.py │ │ ├── test_config.py │ │ ├── test_models.py │ │ ├── test_utils.py │ │ └── test_views.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── app │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── authentification │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── models.py │ ├── templates │ │ ├── acc_active_email.html │ │ ├── base_auth.html │ │ ├── email_not_set.html │ │ ├── password_reset_complete.html │ │ ├── password_reset_confirm.html │ │ ├── password_reset_done.html │ │ ├── password_reset_email.html │ │ ├── password_reset_form.html │ │ ├── password_reset_subject.txt │ │ ├── signup.html │ │ ├── validate_mail_address_complete.html │ │ └── validate_mail_address_invalid.html │ ├── templatetags │ │ └── utils_templating.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_activate.py │ │ ├── test_signup.py │ │ └── test_template.py │ ├── tokens.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── classifier │ ├── __init__.py │ ├── model.py │ ├── preprocess.py │ ├── task.py │ └── utils.py ├── manage.py ├── requirements.txt ├── server │ ├── __init__.py │ ├── apps.py │ ├── forms.py │ ├── management │ │ └── commands │ │ │ ├── create_admin.py │ │ │ ├── create_role_mapping.py │ │ │ ├── create_roles.py │ │ │ └── wait_for_db.py │ ├── middleware.py │ ├── migrations │ │ └── __init__.py │ ├── social_auth.py │ ├── static │ │ ├── .eslintrc │ │ ├── .jsbeautifyrc │ │ ├── .pug-lintrc │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── admin.css │ │ │ │ ├── all.css │ │ │ │ ├── annotation.css │ │ │ │ ├── bulma-checkradio.min.css │ │ │ │ ├── bulma-divider.min.css │ │ │ │ ├── bulma-tooltip.min.css │ │ │ │ ├── bulma.min.css │ │ │ │ └── forum.css │ │ │ ├── images │ │ │ │ ├── cat.png │ │ │ │ ├── cats │ │ │ │ │ ├── seq2seq.jpg │ │ │ │ │ ├── sequence_labeling.jpg │ │ │ │ │ ├── speech2text.jpg │ │ │ │ │ └── text_classification.jpg │ │ │ │ ├── logo.png │ │ │ │ ├── named_entity_recognition.png │ │ │ │ ├── sentiment_analysis.png │ │ │ │ ├── sequence_labeling.png │ │ │ │ └── translation.png │ │ │ ├── js │ │ │ │ └── all.js │ │ │ └── webfonts │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ └── sans.css │ │ ├── components │ │ │ ├── annotation.pug │ │ │ ├── annotationMixin.js │ │ │ ├── annotator.vue │ │ │ ├── demo │ │ │ │ ├── demo_api.js │ │ │ │ └── demo_data.js │ │ │ ├── directives.js │ │ │ ├── document_classification.vue │ │ │ ├── download.pug │ │ │ ├── download_seq2seq.vue │ │ │ ├── download_sequence_labeling.vue │ │ │ ├── download_speech2text.vue │ │ │ ├── download_text_classification.vue │ │ │ ├── examples │ │ │ │ ├── download_seq2seq.csv │ │ │ │ ├── download_seq2seq.jsonl │ │ │ │ ├── download_sequence_labeling.json1l │ │ │ │ ├── download_sequence_labeling.jsonl │ │ │ │ ├── download_speech2text.jsonl │ │ │ │ ├── download_text_classification.csv │ │ │ │ ├── download_text_classification.jsonl │ │ │ │ ├── upload_seq2seq.csv │ │ │ │ ├── upload_seq2seq.jsonl │ │ │ │ ├── upload_seq2seq.txt │ │ │ │ ├── upload_seq2seq.xlsx │ │ │ │ ├── upload_sequence_labeling.conll │ │ │ │ ├── upload_sequence_labeling.jsonl │ │ │ │ ├── upload_sequence_labeling.txt │ │ │ │ ├── upload_speech2text.jsonl │ │ │ │ ├── upload_text_classification.csv │ │ │ │ ├── upload_text_classification.jsonl │ │ │ │ ├── upload_text_classification.txt │ │ │ │ └── upload_text_classification.xlsx │ │ │ ├── filter.js │ │ │ ├── guideline.vue │ │ │ ├── hljsLanguages.js │ │ │ ├── http.js │ │ │ ├── label.vue │ │ │ ├── messages.vue │ │ │ ├── preview.vue │ │ │ ├── projects.vue │ │ │ ├── seq2seq.vue │ │ │ ├── sequence_labeling.vue │ │ │ ├── speech2text.vue │ │ │ ├── stats.vue │ │ │ ├── upload.pug │ │ │ ├── uploadMixin.js │ │ │ ├── upload_seq2seq.vue │ │ │ ├── upload_sequence_labeling.vue │ │ │ ├── upload_speech2text.vue │ │ │ ├── upload_text_classification.vue │ │ │ └── users.vue │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── pages │ │ │ ├── dataset.js │ │ │ ├── demo_named_entity.js │ │ │ ├── demo_text_classification.js │ │ │ ├── demo_translation.js │ │ │ ├── document_classification.js │ │ │ ├── download_seq2seq.js │ │ │ ├── download_sequence_labeling.js │ │ │ ├── download_speech2text.js │ │ │ ├── download_text_classification.js │ │ │ ├── guideline.js │ │ │ ├── index.js │ │ │ ├── label.js │ │ │ ├── projects.js │ │ │ ├── seq2seq.js │ │ │ ├── sequence_labeling.js │ │ │ ├── speech2text.js │ │ │ ├── stats.js │ │ │ ├── upload_seq2seq.js │ │ │ ├── upload_sequence_labeling.js │ │ │ ├── upload_speech2text.js │ │ │ ├── upload_text_classification.js │ │ │ └── users.js │ │ ├── static │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ └── webpack.config.js │ ├── templates │ │ ├── admin.html │ │ ├── annotation.html │ │ ├── base.html │ │ ├── dataset.html │ │ ├── index.html │ │ ├── login.html │ │ ├── projects.html │ │ └── tags │ │ │ ├── azure_appinsights.html │ │ │ └── google_analytics.html │ ├── templatetags │ │ ├── __init__.py │ │ └── analytics.py │ ├── tests │ │ ├── __init__.py │ │ ├── cassettes │ │ │ ├── TestAzureADTenantSocialAuth.test_fetch_permissions_is_admin.yaml │ │ │ ├── TestAzureADTenantSocialAuth.test_fetch_permissions_not_admin.yaml │ │ │ ├── TestGithubSocialAuth.test_fetch_permissions_is_admin.yaml │ │ │ ├── TestGithubSocialAuth.test_fetch_permissions_not_admin.yaml │ │ │ ├── TestOktaOAuth2SocialAuth.test_fetch_permissions_is_admin.yaml │ │ │ ├── TestOktaOAuth2SocialAuth.test_fetch_permissions_not_admin.yaml │ │ │ ├── TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_is_admin.yaml │ │ │ └── TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_not_admin.yaml │ │ ├── test_middleware.py │ │ └── test_social_auth.py │ ├── urls.py │ └── views.py └── tools │ ├── dev-django.sh │ └── run.sh ├── awsdeploy.yml ├── azure-pipelines.yaml ├── azuredeploy.json ├── cloudbuild.yaml ├── docker-compose.dev.yml ├── docker-compose.prod.yml ├── docker-compose.yml ├── docs ├── CODE_OF_CONDUCT.md ├── _config.yml ├── advanced │ ├── aws_https_settings.md │ └── oauth2_settings.md ├── faq.md ├── getting-started.md ├── images │ ├── demo │ │ ├── demo.gif │ │ ├── demo_ner.png │ │ ├── demo_sa.png │ │ ├── demo_translation.png │ │ ├── demo_tts.png │ │ ├── named_entity_annotation.gif │ │ ├── text_classification.gif │ │ └── translation.gif │ ├── logo │ │ ├── doccano.png │ │ └── icon.png │ ├── oauth │ │ ├── login_page.png │ │ ├── oauth_apps.png │ │ ├── okta_oauth_app.png │ │ └── okta_oauth_login_page.png │ └── tutorial │ │ ├── 000253.png │ │ ├── 000254.png │ │ ├── 000255.png │ │ ├── 000256.png │ │ ├── 000257.png │ │ ├── 000258.png │ │ ├── 000259.png │ │ ├── 000260.png │ │ ├── 000261.png │ │ ├── 000262.png │ │ ├── 000263.png │ │ ├── 000264.png │ │ ├── 000266.png │ │ ├── 000267.png │ │ ├── annotation.png │ │ ├── create_project.png │ │ ├── define_labels.png │ │ ├── export_dataset.png │ │ ├── import_dataset.png │ │ └── signin.png ├── index.md ├── project_structure.md ├── roadmap.md └── tutorial.md ├── environment.yml ├── frontend ├── .babelrc ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── Dockerfile ├── README.md ├── api │ ├── db │ │ ├── docs.json │ │ ├── labels.json │ │ ├── members.json │ │ ├── projects.json │ │ ├── stats.json │ │ └── users.json │ ├── index.js │ └── routes │ │ ├── auth.js │ │ ├── docs.js │ │ ├── labels.js │ │ ├── members.js │ │ ├── projects.js │ │ ├── stats.js │ │ └── users.js ├── assets │ ├── README.md │ ├── icon.png │ └── style │ │ ├── app.styl │ │ ├── editor.css │ │ └── variables.styl ├── components │ ├── containers │ │ ├── annotation │ │ │ ├── ApproveButton.vue │ │ │ ├── BottomNavigator.vue │ │ │ ├── EntityItemBox.vue │ │ │ ├── FilterButton.vue │ │ │ ├── GuidelineButton.vue │ │ │ ├── Pagination.vue │ │ │ ├── Seq2seqContainer.vue │ │ │ └── TextClassification.vue │ │ ├── documents │ │ │ ├── DocumentActionMenu.vue │ │ │ ├── DocumentDeletionButton.vue │ │ │ └── DocumentList.vue │ │ ├── labels │ │ │ ├── LabelActionMenu.vue │ │ │ ├── LabelDeletionButton.vue │ │ │ └── LabelList.vue │ │ ├── members │ │ │ ├── MemberAdditionButton.vue │ │ │ ├── MemberDeletionButton.vue │ │ │ └── MemberList.vue │ │ └── projects │ │ │ ├── ProjectCreationButton.vue │ │ │ ├── ProjectDeletionButton.vue │ │ │ └── ProjectList.vue │ ├── molecules │ │ ├── ActionMenu.vue │ │ ├── BarChart.vue │ │ ├── BaseCard.vue │ │ ├── BaseModal.vue │ │ ├── DoughnutChart.vue │ │ └── EntityItem.vue │ └── organisms │ │ ├── annotation │ │ ├── EntityItemBox.vue │ │ ├── GuidelineCard.vue │ │ ├── MetadataBox.vue │ │ ├── MultiClassClassification.vue │ │ └── Seq2seqBox.vue │ │ ├── auth │ │ └── LoginForm.vue │ │ ├── documents │ │ ├── DocumentExportForm.vue │ │ └── DocumentUploadForm.vue │ │ ├── labels │ │ ├── LabelCreationForm.vue │ │ └── LabelImportForm.vue │ │ ├── layout │ │ ├── FeatureCard.vue │ │ ├── FeatureCards.vue │ │ ├── TheBottomBanner.vue │ │ ├── TheColorModeSwitcher.vue │ │ ├── TheFooter.vue │ │ ├── TheHeader.vue │ │ ├── TheSideBar.vue │ │ └── TheTopBanner.vue │ │ ├── members │ │ └── MemberAdditionForm.vue │ │ ├── projects │ │ └── ProjectCreationForm.vue │ │ └── utils │ │ ├── ConfirmDialog.vue │ │ └── ConfirmForm.vue ├── dev-nuxt.sh ├── jest.config.js ├── layouts │ ├── README.md │ ├── annotation.vue │ ├── default.vue │ ├── demo.vue │ ├── error.vue │ ├── project.vue │ └── projects.vue ├── middleware │ ├── README.md │ ├── auth.js │ ├── check-admin.js │ ├── check-auth.js │ └── set-project.js ├── nuxt.config.js ├── package.json ├── pages │ ├── README.md │ ├── auth.vue │ ├── demo │ │ ├── named-entity-recognition │ │ │ └── index.vue │ │ ├── sentiment-analysis │ │ │ └── index.vue │ │ ├── text-to-sql │ │ │ └── index.vue │ │ └── translation │ │ │ └── index.vue │ ├── index.vue │ └── projects │ │ ├── _id │ │ ├── dataset │ │ │ └── index.vue │ │ ├── guideline │ │ │ └── index.vue │ │ ├── index.vue │ │ ├── labels │ │ │ └── index.vue │ │ ├── members │ │ │ └── index.vue │ │ ├── sequence-labeling │ │ │ └── index.vue │ │ ├── sequence-to-sequence │ │ │ └── index.vue │ │ ├── statistics │ │ │ └── index.vue │ │ └── text-classification │ │ │ └── index.vue │ │ └── index.vue ├── plugins │ ├── README.md │ ├── filters.js │ ├── utils.js │ ├── vue-shortkey.js │ └── vue-youtube.js ├── rules │ └── index.js ├── services │ ├── annotation.service.js │ ├── api.service.js │ ├── auth.service.js │ ├── document.service.js │ ├── label.service.js │ ├── member.service.js │ ├── parsers │ │ └── csv.service.js │ ├── project.service.js │ ├── role.service.js │ ├── statistics.service.js │ ├── token.service.js │ └── user.service.js ├── static │ ├── README.md │ ├── favicon.ico │ ├── images │ │ ├── feature1.png │ │ ├── feature2.png │ │ ├── feature3.png │ │ ├── hero.jpeg │ │ ├── ner_demo.png │ │ ├── vbanner.jpg │ │ └── vuetify.png │ └── v.png ├── store │ ├── README.md │ ├── auth.js │ ├── documents.js │ ├── labels.js │ ├── members.js │ ├── pagination.js │ ├── projects.js │ ├── roles.js │ └── statistics.js ├── test │ ├── e2e │ │ └── .gitkeep │ ├── integration │ │ └── organisms │ │ │ └── .gitkeep │ └── unit │ │ ├── components │ │ ├── containers │ │ │ ├── ProjectCreationButton.spec.js │ │ │ ├── ProjectDeletionButton.spec.js │ │ │ └── ProjectList.spec.js │ │ ├── molecules │ │ │ └── .gitkeep │ │ └── organisms │ │ │ ├── ProjecCreationForm.spec.js │ │ │ └── ProjectList.spec.js │ │ ├── plugins │ │ └── filters.spec.js │ │ └── services │ │ ├── api.service.spec.js │ │ ├── csv.service.spec.js │ │ └── project.service.spec.js └── yarn.lock ├── heroku.yml ├── mkdocs.yml ├── nginx ├── Dockerfile └── nginx.conf ├── package.json ├── requirements.txt ├── template.aws.yaml └── tools ├── azure.sh ├── cd.sh ├── ci.sh ├── create-admin.sh ├── dev-django.sh ├── dev-webpack.sh ├── heroku.sh ├── install-mssql.sh └── run.sh /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/01-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.github/ISSUE_TEMPLATE/01-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/02-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.github/ISSUE_TEMPLATE/02-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/03-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.github/ISSUE_TEMPLATE/03-install.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/04-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.github/ISSUE_TEMPLATE/04-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app.json -------------------------------------------------------------------------------- /app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/.dockerignore -------------------------------------------------------------------------------- /app/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/Dockerfile -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/admin.py -------------------------------------------------------------------------------- /app/api/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/apps.py -------------------------------------------------------------------------------- /app/api/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/exceptions.py -------------------------------------------------------------------------------- /app/api/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/filters.py -------------------------------------------------------------------------------- /app/api/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/managers.py -------------------------------------------------------------------------------- /app/api/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/migrations/0001_initial.py -------------------------------------------------------------------------------- /app/api/migrations/0002_project_single_class_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/migrations/0002_project_single_class_classification.py -------------------------------------------------------------------------------- /app/api/migrations/0002_speech2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/migrations/0002_speech2text.py -------------------------------------------------------------------------------- /app/api/migrations/0003_merge_20200612_0205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/migrations/0003_merge_20200612_0205.py -------------------------------------------------------------------------------- /app/api/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/models.py -------------------------------------------------------------------------------- /app/api/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/permissions.py -------------------------------------------------------------------------------- /app/api/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/serializers.py -------------------------------------------------------------------------------- /app/api/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/api/tests/data/classification.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/classification.jsonl -------------------------------------------------------------------------------- /app/api/tests/data/example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.csv -------------------------------------------------------------------------------- /app/api/tests/data/example.invalid.2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.invalid.2.csv -------------------------------------------------------------------------------- /app/api/tests/data/example.invalid.2.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.invalid.2.xlsx -------------------------------------------------------------------------------- /app/api/tests/data/example.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.jsonl -------------------------------------------------------------------------------- /app/api/tests/data/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.txt -------------------------------------------------------------------------------- /app/api/tests/data/example.utf16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.utf16.csv -------------------------------------------------------------------------------- /app/api/tests/data/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example.xlsx -------------------------------------------------------------------------------- /app/api/tests/data/example_column_and_row_not_matching.csv: -------------------------------------------------------------------------------- 1 | text, label 2 | AAA 3 | BBB 4 | CCC -------------------------------------------------------------------------------- /app/api/tests/data/example_column_and_row_not_matching.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example_column_and_row_not_matching.xlsx -------------------------------------------------------------------------------- /app/api/tests/data/example_one_column.csv: -------------------------------------------------------------------------------- 1 | text 2 | AAA 3 | BBB 4 | CCC -------------------------------------------------------------------------------- /app/api/tests/data/example_one_column.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example_one_column.xlsx -------------------------------------------------------------------------------- /app/api/tests/data/example_one_column_no_header.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example_one_column_no_header.xlsx -------------------------------------------------------------------------------- /app/api/tests/data/example_out_of_order_columns.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/example_out_of_order_columns.csv -------------------------------------------------------------------------------- /app/api/tests/data/invalid_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/invalid_labels.json -------------------------------------------------------------------------------- /app/api/tests/data/labeling.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/labeling.conll -------------------------------------------------------------------------------- /app/api/tests/data/labeling.invalid.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/labeling.invalid.conll -------------------------------------------------------------------------------- /app/api/tests/data/labeling.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/labeling.jsonl -------------------------------------------------------------------------------- /app/api/tests/data/labeling.trailing.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/labeling.trailing.conll -------------------------------------------------------------------------------- /app/api/tests/data/seq2seq.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/seq2seq.jsonl -------------------------------------------------------------------------------- /app/api/tests/data/valid_labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/data/valid_labels.json -------------------------------------------------------------------------------- /app/api/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/test_api.py -------------------------------------------------------------------------------- /app/api/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/test_config.py -------------------------------------------------------------------------------- /app/api/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/test_models.py -------------------------------------------------------------------------------- /app/api/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/tests/test_utils.py -------------------------------------------------------------------------------- /app/api/tests/test_views.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/urls.py -------------------------------------------------------------------------------- /app/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/utils.py -------------------------------------------------------------------------------- /app/api/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/api/views.py -------------------------------------------------------------------------------- /app/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/app/settings.py -------------------------------------------------------------------------------- /app/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/app/urls.py -------------------------------------------------------------------------------- /app/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/app/wsgi.py -------------------------------------------------------------------------------- /app/authentification/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/authentification/admin.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/authentification/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/forms.py -------------------------------------------------------------------------------- /app/authentification/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/authentification/templates/acc_active_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/acc_active_email.html -------------------------------------------------------------------------------- /app/authentification/templates/base_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/base_auth.html -------------------------------------------------------------------------------- /app/authentification/templates/email_not_set.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/email_not_set.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/password_reset_complete.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/password_reset_confirm.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/password_reset_done.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/password_reset_email.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/password_reset_form.html -------------------------------------------------------------------------------- /app/authentification/templates/password_reset_subject.txt: -------------------------------------------------------------------------------- 1 | Password reset 2 | -------------------------------------------------------------------------------- /app/authentification/templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/signup.html -------------------------------------------------------------------------------- /app/authentification/templates/validate_mail_address_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/validate_mail_address_complete.html -------------------------------------------------------------------------------- /app/authentification/templates/validate_mail_address_invalid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templates/validate_mail_address_invalid.html -------------------------------------------------------------------------------- /app/authentification/templatetags/utils_templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/templatetags/utils_templating.py -------------------------------------------------------------------------------- /app/authentification/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/authentification/tests/test_activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/tests/test_activate.py -------------------------------------------------------------------------------- /app/authentification/tests/test_signup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/tests/test_signup.py -------------------------------------------------------------------------------- /app/authentification/tests/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/tests/test_template.py -------------------------------------------------------------------------------- /app/authentification/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/tokens.py -------------------------------------------------------------------------------- /app/authentification/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/urls.py -------------------------------------------------------------------------------- /app/authentification/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/utils.py -------------------------------------------------------------------------------- /app/authentification/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/authentification/views.py -------------------------------------------------------------------------------- /app/classifier/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/classifier/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/classifier/model.py -------------------------------------------------------------------------------- /app/classifier/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/classifier/preprocess.py -------------------------------------------------------------------------------- /app/classifier/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/classifier/task.py -------------------------------------------------------------------------------- /app/classifier/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/classifier/utils.py -------------------------------------------------------------------------------- /app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/manage.py -------------------------------------------------------------------------------- /app/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/requirements.txt -------------------------------------------------------------------------------- /app/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/apps.py -------------------------------------------------------------------------------- /app/server/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/forms.py -------------------------------------------------------------------------------- /app/server/management/commands/create_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/management/commands/create_admin.py -------------------------------------------------------------------------------- /app/server/management/commands/create_role_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/management/commands/create_role_mapping.py -------------------------------------------------------------------------------- /app/server/management/commands/create_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/management/commands/create_roles.py -------------------------------------------------------------------------------- /app/server/management/commands/wait_for_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/management/commands/wait_for_db.py -------------------------------------------------------------------------------- /app/server/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/middleware.py -------------------------------------------------------------------------------- /app/server/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/server/social_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/social_auth.py -------------------------------------------------------------------------------- /app/server/static/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/.eslintrc -------------------------------------------------------------------------------- /app/server/static/.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/.jsbeautifyrc -------------------------------------------------------------------------------- /app/server/static/.pug-lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/.pug-lintrc -------------------------------------------------------------------------------- /app/server/static/assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/admin.css -------------------------------------------------------------------------------- /app/server/static/assets/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/all.css -------------------------------------------------------------------------------- /app/server/static/assets/css/annotation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/annotation.css -------------------------------------------------------------------------------- /app/server/static/assets/css/bulma-checkradio.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/bulma-checkradio.min.css -------------------------------------------------------------------------------- /app/server/static/assets/css/bulma-divider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/bulma-divider.min.css -------------------------------------------------------------------------------- /app/server/static/assets/css/bulma-tooltip.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/bulma-tooltip.min.css -------------------------------------------------------------------------------- /app/server/static/assets/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/bulma.min.css -------------------------------------------------------------------------------- /app/server/static/assets/css/forum.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/css/forum.css -------------------------------------------------------------------------------- /app/server/static/assets/images/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/cat.png -------------------------------------------------------------------------------- /app/server/static/assets/images/cats/seq2seq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/cats/seq2seq.jpg -------------------------------------------------------------------------------- /app/server/static/assets/images/cats/sequence_labeling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/cats/sequence_labeling.jpg -------------------------------------------------------------------------------- /app/server/static/assets/images/cats/speech2text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/cats/speech2text.jpg -------------------------------------------------------------------------------- /app/server/static/assets/images/cats/text_classification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/cats/text_classification.jpg -------------------------------------------------------------------------------- /app/server/static/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/logo.png -------------------------------------------------------------------------------- /app/server/static/assets/images/named_entity_recognition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/named_entity_recognition.png -------------------------------------------------------------------------------- /app/server/static/assets/images/sentiment_analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/sentiment_analysis.png -------------------------------------------------------------------------------- /app/server/static/assets/images/sequence_labeling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/sequence_labeling.png -------------------------------------------------------------------------------- /app/server/static/assets/images/translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/images/translation.png -------------------------------------------------------------------------------- /app/server/static/assets/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/js/all.js -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /app/server/static/assets/webfonts/sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/assets/webfonts/sans.css -------------------------------------------------------------------------------- /app/server/static/components/annotation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/annotation.pug -------------------------------------------------------------------------------- /app/server/static/components/annotationMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/annotationMixin.js -------------------------------------------------------------------------------- /app/server/static/components/annotator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/annotator.vue -------------------------------------------------------------------------------- /app/server/static/components/demo/demo_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/demo/demo_api.js -------------------------------------------------------------------------------- /app/server/static/components/demo/demo_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/demo/demo_data.js -------------------------------------------------------------------------------- /app/server/static/components/directives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/directives.js -------------------------------------------------------------------------------- /app/server/static/components/document_classification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/document_classification.vue -------------------------------------------------------------------------------- /app/server/static/components/download.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/download.pug -------------------------------------------------------------------------------- /app/server/static/components/download_seq2seq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/download_seq2seq.vue -------------------------------------------------------------------------------- /app/server/static/components/download_sequence_labeling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/download_sequence_labeling.vue -------------------------------------------------------------------------------- /app/server/static/components/download_speech2text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/download_speech2text.vue -------------------------------------------------------------------------------- /app/server/static/components/download_text_classification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/download_text_classification.vue -------------------------------------------------------------------------------- /app/server/static/components/examples/download_seq2seq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_seq2seq.csv -------------------------------------------------------------------------------- /app/server/static/components/examples/download_seq2seq.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_seq2seq.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/download_sequence_labeling.json1l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_sequence_labeling.json1l -------------------------------------------------------------------------------- /app/server/static/components/examples/download_sequence_labeling.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_sequence_labeling.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/download_speech2text.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_speech2text.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/download_text_classification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_text_classification.csv -------------------------------------------------------------------------------- /app/server/static/components/examples/download_text_classification.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/download_text_classification.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_seq2seq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_seq2seq.csv -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_seq2seq.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_seq2seq.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_seq2seq.txt: -------------------------------------------------------------------------------- 1 | Hello! 2 | Good morning. 3 | See you. 4 | -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_seq2seq.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_seq2seq.xlsx -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_sequence_labeling.conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_sequence_labeling.conll -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_sequence_labeling.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_sequence_labeling.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_sequence_labeling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_sequence_labeling.txt -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_speech2text.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_speech2text.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_text_classification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_text_classification.csv -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_text_classification.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_text_classification.jsonl -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_text_classification.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_text_classification.txt -------------------------------------------------------------------------------- /app/server/static/components/examples/upload_text_classification.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/examples/upload_text_classification.xlsx -------------------------------------------------------------------------------- /app/server/static/components/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/filter.js -------------------------------------------------------------------------------- /app/server/static/components/guideline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/guideline.vue -------------------------------------------------------------------------------- /app/server/static/components/hljsLanguages.js: -------------------------------------------------------------------------------- 1 | module.exports = ['json']; 2 | -------------------------------------------------------------------------------- /app/server/static/components/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/http.js -------------------------------------------------------------------------------- /app/server/static/components/label.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/label.vue -------------------------------------------------------------------------------- /app/server/static/components/messages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/messages.vue -------------------------------------------------------------------------------- /app/server/static/components/preview.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/preview.vue -------------------------------------------------------------------------------- /app/server/static/components/projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/projects.vue -------------------------------------------------------------------------------- /app/server/static/components/seq2seq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/seq2seq.vue -------------------------------------------------------------------------------- /app/server/static/components/sequence_labeling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/sequence_labeling.vue -------------------------------------------------------------------------------- /app/server/static/components/speech2text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/speech2text.vue -------------------------------------------------------------------------------- /app/server/static/components/stats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/stats.vue -------------------------------------------------------------------------------- /app/server/static/components/upload.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/upload.pug -------------------------------------------------------------------------------- /app/server/static/components/uploadMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/uploadMixin.js -------------------------------------------------------------------------------- /app/server/static/components/upload_seq2seq.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/upload_seq2seq.vue -------------------------------------------------------------------------------- /app/server/static/components/upload_sequence_labeling.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/upload_sequence_labeling.vue -------------------------------------------------------------------------------- /app/server/static/components/upload_speech2text.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/upload_speech2text.vue -------------------------------------------------------------------------------- /app/server/static/components/upload_text_classification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/upload_text_classification.vue -------------------------------------------------------------------------------- /app/server/static/components/users.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/components/users.vue -------------------------------------------------------------------------------- /app/server/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/package-lock.json -------------------------------------------------------------------------------- /app/server/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/package.json -------------------------------------------------------------------------------- /app/server/static/pages/dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/dataset.js -------------------------------------------------------------------------------- /app/server/static/pages/demo_named_entity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/demo_named_entity.js -------------------------------------------------------------------------------- /app/server/static/pages/demo_text_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/demo_text_classification.js -------------------------------------------------------------------------------- /app/server/static/pages/demo_translation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/demo_translation.js -------------------------------------------------------------------------------- /app/server/static/pages/document_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/document_classification.js -------------------------------------------------------------------------------- /app/server/static/pages/download_seq2seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/download_seq2seq.js -------------------------------------------------------------------------------- /app/server/static/pages/download_sequence_labeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/download_sequence_labeling.js -------------------------------------------------------------------------------- /app/server/static/pages/download_speech2text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/download_speech2text.js -------------------------------------------------------------------------------- /app/server/static/pages/download_text_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/download_text_classification.js -------------------------------------------------------------------------------- /app/server/static/pages/guideline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/guideline.js -------------------------------------------------------------------------------- /app/server/static/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/index.js -------------------------------------------------------------------------------- /app/server/static/pages/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/label.js -------------------------------------------------------------------------------- /app/server/static/pages/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/projects.js -------------------------------------------------------------------------------- /app/server/static/pages/seq2seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/seq2seq.js -------------------------------------------------------------------------------- /app/server/static/pages/sequence_labeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/sequence_labeling.js -------------------------------------------------------------------------------- /app/server/static/pages/speech2text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/speech2text.js -------------------------------------------------------------------------------- /app/server/static/pages/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/stats.js -------------------------------------------------------------------------------- /app/server/static/pages/upload_seq2seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/upload_seq2seq.js -------------------------------------------------------------------------------- /app/server/static/pages/upload_sequence_labeling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/upload_sequence_labeling.js -------------------------------------------------------------------------------- /app/server/static/pages/upload_speech2text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/upload_speech2text.js -------------------------------------------------------------------------------- /app/server/static/pages/upload_text_classification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/upload_text_classification.js -------------------------------------------------------------------------------- /app/server/static/pages/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/pages/users.js -------------------------------------------------------------------------------- /app/server/static/static/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-144x144.png -------------------------------------------------------------------------------- /app/server/static/static/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-192x192.png -------------------------------------------------------------------------------- /app/server/static/static/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-36x36.png -------------------------------------------------------------------------------- /app/server/static/static/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-48x48.png -------------------------------------------------------------------------------- /app/server/static/static/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-72x72.png -------------------------------------------------------------------------------- /app/server/static/static/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/android-icon-96x96.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-114x114.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-120x120.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-144x144.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-152x152.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-180x180.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-57x57.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-60x60.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-72x72.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-76x76.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon-precomposed.png -------------------------------------------------------------------------------- /app/server/static/static/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/apple-icon.png -------------------------------------------------------------------------------- /app/server/static/static/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/browserconfig.xml -------------------------------------------------------------------------------- /app/server/static/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/favicon-16x16.png -------------------------------------------------------------------------------- /app/server/static/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/favicon-32x32.png -------------------------------------------------------------------------------- /app/server/static/static/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/favicon-96x96.png -------------------------------------------------------------------------------- /app/server/static/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/favicon.ico -------------------------------------------------------------------------------- /app/server/static/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/manifest.json -------------------------------------------------------------------------------- /app/server/static/static/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/ms-icon-144x144.png -------------------------------------------------------------------------------- /app/server/static/static/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/ms-icon-150x150.png -------------------------------------------------------------------------------- /app/server/static/static/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/ms-icon-310x310.png -------------------------------------------------------------------------------- /app/server/static/static/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/static/ms-icon-70x70.png -------------------------------------------------------------------------------- /app/server/static/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/static/webpack.config.js -------------------------------------------------------------------------------- /app/server/templates/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/admin.html -------------------------------------------------------------------------------- /app/server/templates/annotation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/annotation.html -------------------------------------------------------------------------------- /app/server/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/base.html -------------------------------------------------------------------------------- /app/server/templates/dataset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/dataset.html -------------------------------------------------------------------------------- /app/server/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/index.html -------------------------------------------------------------------------------- /app/server/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/login.html -------------------------------------------------------------------------------- /app/server/templates/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/projects.html -------------------------------------------------------------------------------- /app/server/templates/tags/azure_appinsights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/tags/azure_appinsights.html -------------------------------------------------------------------------------- /app/server/templates/tags/google_analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templates/tags/google_analytics.html -------------------------------------------------------------------------------- /app/server/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/server/templatetags/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/templatetags/analytics.py -------------------------------------------------------------------------------- /app/server/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestAzureADTenantSocialAuth.test_fetch_permissions_is_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestAzureADTenantSocialAuth.test_fetch_permissions_is_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestAzureADTenantSocialAuth.test_fetch_permissions_not_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestAzureADTenantSocialAuth.test_fetch_permissions_not_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestGithubSocialAuth.test_fetch_permissions_is_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestGithubSocialAuth.test_fetch_permissions_is_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestGithubSocialAuth.test_fetch_permissions_not_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestGithubSocialAuth.test_fetch_permissions_not_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestOktaOAuth2SocialAuth.test_fetch_permissions_is_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestOktaOAuth2SocialAuth.test_fetch_permissions_is_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestOktaOAuth2SocialAuth.test_fetch_permissions_not_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestOktaOAuth2SocialAuth.test_fetch_permissions_not_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_is_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_is_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/cassettes/TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_not_admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/cassettes/TestOktaOpenIdConnectSocialAuth.test_fetch_permissions_not_admin.yaml -------------------------------------------------------------------------------- /app/server/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/test_middleware.py -------------------------------------------------------------------------------- /app/server/tests/test_social_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/tests/test_social_auth.py -------------------------------------------------------------------------------- /app/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/urls.py -------------------------------------------------------------------------------- /app/server/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/server/views.py -------------------------------------------------------------------------------- /app/tools/dev-django.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/tools/dev-django.sh -------------------------------------------------------------------------------- /app/tools/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/app/tools/run.sh -------------------------------------------------------------------------------- /awsdeploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/awsdeploy.yml -------------------------------------------------------------------------------- /azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/azure-pipelines.yaml -------------------------------------------------------------------------------- /azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/azuredeploy.json -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /docker-compose.dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docker-compose.dev.yml -------------------------------------------------------------------------------- /docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docker-compose.prod.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/advanced/aws_https_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/advanced/aws_https_settings.md -------------------------------------------------------------------------------- /docs/advanced/oauth2_settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/advanced/oauth2_settings.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/demo/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/demo.gif -------------------------------------------------------------------------------- /docs/images/demo/demo_ner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/demo_ner.png -------------------------------------------------------------------------------- /docs/images/demo/demo_sa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/demo_sa.png -------------------------------------------------------------------------------- /docs/images/demo/demo_translation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/demo_translation.png -------------------------------------------------------------------------------- /docs/images/demo/demo_tts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/demo_tts.png -------------------------------------------------------------------------------- /docs/images/demo/named_entity_annotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/named_entity_annotation.gif -------------------------------------------------------------------------------- /docs/images/demo/text_classification.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/text_classification.gif -------------------------------------------------------------------------------- /docs/images/demo/translation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/demo/translation.gif -------------------------------------------------------------------------------- /docs/images/logo/doccano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/logo/doccano.png -------------------------------------------------------------------------------- /docs/images/logo/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/logo/icon.png -------------------------------------------------------------------------------- /docs/images/oauth/login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/oauth/login_page.png -------------------------------------------------------------------------------- /docs/images/oauth/oauth_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/oauth/oauth_apps.png -------------------------------------------------------------------------------- /docs/images/oauth/okta_oauth_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/oauth/okta_oauth_app.png -------------------------------------------------------------------------------- /docs/images/oauth/okta_oauth_login_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/oauth/okta_oauth_login_page.png -------------------------------------------------------------------------------- /docs/images/tutorial/000253.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000253.png -------------------------------------------------------------------------------- /docs/images/tutorial/000254.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000254.png -------------------------------------------------------------------------------- /docs/images/tutorial/000255.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000255.png -------------------------------------------------------------------------------- /docs/images/tutorial/000256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000256.png -------------------------------------------------------------------------------- /docs/images/tutorial/000257.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000257.png -------------------------------------------------------------------------------- /docs/images/tutorial/000258.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000258.png -------------------------------------------------------------------------------- /docs/images/tutorial/000259.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000259.png -------------------------------------------------------------------------------- /docs/images/tutorial/000260.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000260.png -------------------------------------------------------------------------------- /docs/images/tutorial/000261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000261.png -------------------------------------------------------------------------------- /docs/images/tutorial/000262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000262.png -------------------------------------------------------------------------------- /docs/images/tutorial/000263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000263.png -------------------------------------------------------------------------------- /docs/images/tutorial/000264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000264.png -------------------------------------------------------------------------------- /docs/images/tutorial/000266.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000266.png -------------------------------------------------------------------------------- /docs/images/tutorial/000267.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/000267.png -------------------------------------------------------------------------------- /docs/images/tutorial/annotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/annotation.png -------------------------------------------------------------------------------- /docs/images/tutorial/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/create_project.png -------------------------------------------------------------------------------- /docs/images/tutorial/define_labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/define_labels.png -------------------------------------------------------------------------------- /docs/images/tutorial/export_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/export_dataset.png -------------------------------------------------------------------------------- /docs/images/tutorial/import_dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/import_dataset.png -------------------------------------------------------------------------------- /docs/images/tutorial/signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/images/tutorial/signin.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/project_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/project_structure.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/docs/tutorial.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/environment.yml -------------------------------------------------------------------------------- /frontend/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/.babelrc -------------------------------------------------------------------------------- /frontend/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/.dockerignore -------------------------------------------------------------------------------- /frontend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/.eslintrc.js -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/api/db/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/docs.json -------------------------------------------------------------------------------- /frontend/api/db/labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/labels.json -------------------------------------------------------------------------------- /frontend/api/db/members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/members.json -------------------------------------------------------------------------------- /frontend/api/db/projects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/projects.json -------------------------------------------------------------------------------- /frontend/api/db/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/stats.json -------------------------------------------------------------------------------- /frontend/api/db/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/db/users.json -------------------------------------------------------------------------------- /frontend/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/index.js -------------------------------------------------------------------------------- /frontend/api/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/auth.js -------------------------------------------------------------------------------- /frontend/api/routes/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/docs.js -------------------------------------------------------------------------------- /frontend/api/routes/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/labels.js -------------------------------------------------------------------------------- /frontend/api/routes/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/members.js -------------------------------------------------------------------------------- /frontend/api/routes/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/projects.js -------------------------------------------------------------------------------- /frontend/api/routes/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/stats.js -------------------------------------------------------------------------------- /frontend/api/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/api/routes/users.js -------------------------------------------------------------------------------- /frontend/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/assets/README.md -------------------------------------------------------------------------------- /frontend/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/assets/icon.png -------------------------------------------------------------------------------- /frontend/assets/style/app.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/assets/style/app.styl -------------------------------------------------------------------------------- /frontend/assets/style/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/assets/style/editor.css -------------------------------------------------------------------------------- /frontend/assets/style/variables.styl: -------------------------------------------------------------------------------- 1 | @require '~vuetify/src/stylus/settings/_variables.styl' 2 | -------------------------------------------------------------------------------- /frontend/components/containers/annotation/ApproveButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/ApproveButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/BottomNavigator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/BottomNavigator.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/EntityItemBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/EntityItemBox.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/FilterButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/FilterButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/GuidelineButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/GuidelineButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/Pagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/Pagination.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/Seq2seqContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/Seq2seqContainer.vue -------------------------------------------------------------------------------- /frontend/components/containers/annotation/TextClassification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/annotation/TextClassification.vue -------------------------------------------------------------------------------- /frontend/components/containers/documents/DocumentActionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/documents/DocumentActionMenu.vue -------------------------------------------------------------------------------- /frontend/components/containers/documents/DocumentDeletionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/documents/DocumentDeletionButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/documents/DocumentList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/documents/DocumentList.vue -------------------------------------------------------------------------------- /frontend/components/containers/labels/LabelActionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/labels/LabelActionMenu.vue -------------------------------------------------------------------------------- /frontend/components/containers/labels/LabelDeletionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/labels/LabelDeletionButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/labels/LabelList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/labels/LabelList.vue -------------------------------------------------------------------------------- /frontend/components/containers/members/MemberAdditionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/members/MemberAdditionButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/members/MemberDeletionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/members/MemberDeletionButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/members/MemberList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/members/MemberList.vue -------------------------------------------------------------------------------- /frontend/components/containers/projects/ProjectCreationButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/projects/ProjectCreationButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/projects/ProjectDeletionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/projects/ProjectDeletionButton.vue -------------------------------------------------------------------------------- /frontend/components/containers/projects/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/containers/projects/ProjectList.vue -------------------------------------------------------------------------------- /frontend/components/molecules/ActionMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/ActionMenu.vue -------------------------------------------------------------------------------- /frontend/components/molecules/BarChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/BarChart.vue -------------------------------------------------------------------------------- /frontend/components/molecules/BaseCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/BaseCard.vue -------------------------------------------------------------------------------- /frontend/components/molecules/BaseModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/BaseModal.vue -------------------------------------------------------------------------------- /frontend/components/molecules/DoughnutChart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/DoughnutChart.vue -------------------------------------------------------------------------------- /frontend/components/molecules/EntityItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/molecules/EntityItem.vue -------------------------------------------------------------------------------- /frontend/components/organisms/annotation/EntityItemBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/annotation/EntityItemBox.vue -------------------------------------------------------------------------------- /frontend/components/organisms/annotation/GuidelineCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/annotation/GuidelineCard.vue -------------------------------------------------------------------------------- /frontend/components/organisms/annotation/MetadataBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/annotation/MetadataBox.vue -------------------------------------------------------------------------------- /frontend/components/organisms/annotation/MultiClassClassification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/annotation/MultiClassClassification.vue -------------------------------------------------------------------------------- /frontend/components/organisms/annotation/Seq2seqBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/annotation/Seq2seqBox.vue -------------------------------------------------------------------------------- /frontend/components/organisms/auth/LoginForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/auth/LoginForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/documents/DocumentExportForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/documents/DocumentExportForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/documents/DocumentUploadForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/documents/DocumentUploadForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/labels/LabelCreationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/labels/LabelCreationForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/labels/LabelImportForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/labels/LabelImportForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/FeatureCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/FeatureCard.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/FeatureCards.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/FeatureCards.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheBottomBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheBottomBanner.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheColorModeSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheColorModeSwitcher.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheFooter.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheHeader.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheSideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheSideBar.vue -------------------------------------------------------------------------------- /frontend/components/organisms/layout/TheTopBanner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/layout/TheTopBanner.vue -------------------------------------------------------------------------------- /frontend/components/organisms/members/MemberAdditionForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/members/MemberAdditionForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/projects/ProjectCreationForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/projects/ProjectCreationForm.vue -------------------------------------------------------------------------------- /frontend/components/organisms/utils/ConfirmDialog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/utils/ConfirmDialog.vue -------------------------------------------------------------------------------- /frontend/components/organisms/utils/ConfirmForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/components/organisms/utils/ConfirmForm.vue -------------------------------------------------------------------------------- /frontend/dev-nuxt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/dev-nuxt.sh -------------------------------------------------------------------------------- /frontend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/jest.config.js -------------------------------------------------------------------------------- /frontend/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/README.md -------------------------------------------------------------------------------- /frontend/layouts/annotation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/annotation.vue -------------------------------------------------------------------------------- /frontend/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/default.vue -------------------------------------------------------------------------------- /frontend/layouts/demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/demo.vue -------------------------------------------------------------------------------- /frontend/layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/error.vue -------------------------------------------------------------------------------- /frontend/layouts/project.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/project.vue -------------------------------------------------------------------------------- /frontend/layouts/projects.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/layouts/projects.vue -------------------------------------------------------------------------------- /frontend/middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/middleware/README.md -------------------------------------------------------------------------------- /frontend/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/middleware/auth.js -------------------------------------------------------------------------------- /frontend/middleware/check-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/middleware/check-admin.js -------------------------------------------------------------------------------- /frontend/middleware/check-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/middleware/check-auth.js -------------------------------------------------------------------------------- /frontend/middleware/set-project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/middleware/set-project.js -------------------------------------------------------------------------------- /frontend/nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/nuxt.config.js -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/README.md -------------------------------------------------------------------------------- /frontend/pages/auth.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/auth.vue -------------------------------------------------------------------------------- /frontend/pages/demo/named-entity-recognition/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/demo/named-entity-recognition/index.vue -------------------------------------------------------------------------------- /frontend/pages/demo/sentiment-analysis/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/demo/sentiment-analysis/index.vue -------------------------------------------------------------------------------- /frontend/pages/demo/text-to-sql/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/demo/text-to-sql/index.vue -------------------------------------------------------------------------------- /frontend/pages/demo/translation/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/demo/translation/index.vue -------------------------------------------------------------------------------- /frontend/pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/dataset/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/dataset/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/guideline/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/guideline/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/labels/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/labels/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/members/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/members/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/sequence-labeling/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/sequence-labeling/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/sequence-to-sequence/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/sequence-to-sequence/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/statistics/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/statistics/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/_id/text-classification/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/_id/text-classification/index.vue -------------------------------------------------------------------------------- /frontend/pages/projects/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/pages/projects/index.vue -------------------------------------------------------------------------------- /frontend/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/plugins/README.md -------------------------------------------------------------------------------- /frontend/plugins/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/plugins/filters.js -------------------------------------------------------------------------------- /frontend/plugins/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/plugins/utils.js -------------------------------------------------------------------------------- /frontend/plugins/vue-shortkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/plugins/vue-shortkey.js -------------------------------------------------------------------------------- /frontend/plugins/vue-youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/plugins/vue-youtube.js -------------------------------------------------------------------------------- /frontend/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/rules/index.js -------------------------------------------------------------------------------- /frontend/services/annotation.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/annotation.service.js -------------------------------------------------------------------------------- /frontend/services/api.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/api.service.js -------------------------------------------------------------------------------- /frontend/services/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/auth.service.js -------------------------------------------------------------------------------- /frontend/services/document.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/document.service.js -------------------------------------------------------------------------------- /frontend/services/label.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/label.service.js -------------------------------------------------------------------------------- /frontend/services/member.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/member.service.js -------------------------------------------------------------------------------- /frontend/services/parsers/csv.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/parsers/csv.service.js -------------------------------------------------------------------------------- /frontend/services/project.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/project.service.js -------------------------------------------------------------------------------- /frontend/services/role.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/role.service.js -------------------------------------------------------------------------------- /frontend/services/statistics.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/statistics.service.js -------------------------------------------------------------------------------- /frontend/services/token.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/token.service.js -------------------------------------------------------------------------------- /frontend/services/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/services/user.service.js -------------------------------------------------------------------------------- /frontend/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/README.md -------------------------------------------------------------------------------- /frontend/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/favicon.ico -------------------------------------------------------------------------------- /frontend/static/images/feature1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/feature1.png -------------------------------------------------------------------------------- /frontend/static/images/feature2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/feature2.png -------------------------------------------------------------------------------- /frontend/static/images/feature3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/feature3.png -------------------------------------------------------------------------------- /frontend/static/images/hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/hero.jpeg -------------------------------------------------------------------------------- /frontend/static/images/ner_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/ner_demo.png -------------------------------------------------------------------------------- /frontend/static/images/vbanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/vbanner.jpg -------------------------------------------------------------------------------- /frontend/static/images/vuetify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/images/vuetify.png -------------------------------------------------------------------------------- /frontend/static/v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/static/v.png -------------------------------------------------------------------------------- /frontend/store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/README.md -------------------------------------------------------------------------------- /frontend/store/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/auth.js -------------------------------------------------------------------------------- /frontend/store/documents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/documents.js -------------------------------------------------------------------------------- /frontend/store/labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/labels.js -------------------------------------------------------------------------------- /frontend/store/members.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/members.js -------------------------------------------------------------------------------- /frontend/store/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/pagination.js -------------------------------------------------------------------------------- /frontend/store/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/projects.js -------------------------------------------------------------------------------- /frontend/store/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/roles.js -------------------------------------------------------------------------------- /frontend/store/statistics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/store/statistics.js -------------------------------------------------------------------------------- /frontend/test/e2e/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/test/integration/organisms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/test/unit/components/containers/ProjectCreationButton.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/components/containers/ProjectCreationButton.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/components/containers/ProjectDeletionButton.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/components/containers/ProjectDeletionButton.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/components/containers/ProjectList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/components/containers/ProjectList.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/components/molecules/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/test/unit/components/organisms/ProjecCreationForm.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/components/organisms/ProjecCreationForm.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/components/organisms/ProjectList.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/components/organisms/ProjectList.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/plugins/filters.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/plugins/filters.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/services/api.service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/services/api.service.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/services/csv.service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/services/csv.service.spec.js -------------------------------------------------------------------------------- /frontend/test/unit/services/project.service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/test/unit/services/project.service.spec.js -------------------------------------------------------------------------------- /frontend/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/frontend/yarn.lock -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/heroku.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/nginx/Dockerfile -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/requirements.txt -------------------------------------------------------------------------------- /template.aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/template.aws.yaml -------------------------------------------------------------------------------- /tools/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/azure.sh -------------------------------------------------------------------------------- /tools/cd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/cd.sh -------------------------------------------------------------------------------- /tools/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/ci.sh -------------------------------------------------------------------------------- /tools/create-admin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/create-admin.sh -------------------------------------------------------------------------------- /tools/dev-django.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/dev-django.sh -------------------------------------------------------------------------------- /tools/dev-webpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/dev-webpack.sh -------------------------------------------------------------------------------- /tools/heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/heroku.sh -------------------------------------------------------------------------------- /tools/install-mssql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/install-mssql.sh -------------------------------------------------------------------------------- /tools/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-hotel/doccano/HEAD/tools/run.sh --------------------------------------------------------------------------------