You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

192 lines
6.8 KiB

6 years ago
6 years ago
6 years ago
4 years ago
4 years ago
6 years ago
6 years ago
4 years ago
4 years ago
4 years ago
6 years ago
  1. <div align="center">
  2. <img src="https://raw.githubusercontent.com/doccano/doccano/master/docs/images/logo/doccano.png">
  3. </div>
  4. # doccano
  5. [![Codacy Badge](https://app.codacy.com/project/badge/Grade/35ac8625a2bc4eddbff23dbc61bc6abb)](https://www.codacy.com/gh/doccano/doccano/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=doccano/doccano&amp;utm_campaign=Badge_Grade)
  6. [![doccano CI](https://github.com/doccano/doccano/actions/workflows/ci.yml/badge.svg)](https://github.com/doccano/doccano/actions/workflows/ci.yml)
  7. doccano is an open-source text annotation tool for humans. It provides annotation features for text classification, sequence labeling, and sequence to sequence tasks. You can create labeled data for sentiment analysis, named entity recognition, text summarization, and so on. Just create a project, upload data, and start annotating. You can build a dataset in hours.
  8. ## Demo
  9. Try the [annotation demo](http://doccano.herokuapp.com).
  10. ![Demo image](https://raw.githubusercontent.com/doccano/doccano/master/docs/images/demo/demo.gif)
  11. ## Documentation
  12. Read the documentation at <https://doccano.github.io/doccano/>.
  13. ## Features
  14. - Collaborative annotation
  15. - Multi-language support
  16. - Mobile support
  17. - Emoji :smile: support
  18. - Dark theme
  19. - RESTful API
  20. ## Usage
  21. There are three options to run doccano:
  22. - pip (Python 3.8+)
  23. - Docker
  24. - Docker Compose
  25. ### pip
  26. To install doccano, run:
  27. ```bash
  28. pip install doccano
  29. ```
  30. By default, SQLite 3 is used for the default database. If you want to use PostgreSQL, install the additional dependencies:
  31. ```bash
  32. pip install 'doccano[postgresql]'
  33. ```
  34. and set the `DATABASE_URL` environment variable according to your PostgreSQL credentials:
  35. ```bash
  36. DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=disable"
  37. ```
  38. After installation, run the following commands:
  39. ```bash
  40. # Initialize database.
  41. doccano init
  42. # Create a super user.
  43. doccano createuser --username admin --password pass
  44. # Start a web server.
  45. doccano webserver --port 8000
  46. ```
  47. In another terminal, run the command:
  48. ```bash
  49. # Start the task queue to handle file upload/download.
  50. doccano task
  51. ```
  52. Go to <http://127.0.0.1:8000/>.
  53. ### Docker
  54. As a one-time setup, create a Docker container as follows:
  55. ```bash
  56. docker pull doccano/doccano
  57. docker container create --name doccano \
  58. -e "ADMIN_USERNAME=admin" \
  59. -e "ADMIN_EMAIL=admin@example.com" \
  60. -e "ADMIN_PASSWORD=password" \
  61. -v doccano-db:/data \
  62. -p 8000:8000 doccano/doccano
  63. ```
  64. Next, start doccano by running the container:
  65. ```bash
  66. docker container start doccano
  67. ```
  68. Go to <http://127.0.0.1:8000/>.
  69. To stop the container, run `docker container stop doccano -t 5`. All data created in the container will persist across restarts.
  70. If you want to use the latest features, specify the `nightly` tag:
  71. ```bash
  72. docker pull doccano/doccano:nightly
  73. ```
  74. ### Docker Compose
  75. You need to install Git and clone the repository:
  76. ```bash
  77. git clone https://github.com/doccano/doccano.git
  78. cd doccano
  79. ```
  80. _Note for Windows developers:_ Be sure to configure git to correctly handle line endings or you may encounter `status code 127` errors while running the services in future steps. Running with the git config options below will ensure your git directory correctly handles line endings.
  81. ```bash
  82. git clone https://github.com/doccano/doccano.git --config core.autocrlf=input
  83. ```
  84. Then, create an `.env` file with variables in the following format (see [./docker/.env.example](https://github.com/doccano/doccano/blob/master/docker/.env.example)):
  85. ```plain
  86. # platform settings
  87. ADMIN_USERNAME=admin
  88. ADMIN_PASSWORD=password
  89. ADMIN_EMAIL=admin@example.com
  90. # rabbit mq settings
  91. RABBITMQ_DEFAULT_USER=doccano
  92. RABBITMQ_DEFAULT_PASS=doccano
  93. # database settings
  94. POSTGRES_USER=doccano
  95. POSTGRES_PASSWORD=doccano
  96. POSTGRES_DB=doccano
  97. ```
  98. After running the following command, access <http://127.0.0.1/>.
  99. ```bash
  100. docker-compose -f docker/docker-compose.prod.yml --env-file .env up
  101. ```
  102. ### One-click Deployment
  103. | Service | Button |
  104. |---------|---|
  105. | AWS[^1] | [![AWS CloudFormation Launch Stack SVG Button](https://cdn.rawgit.com/buildkite/cloudformation-launch-stack-button-svg/master/launch-stack.svg)](https://console.aws.amazon.com/cloudformation/home?#/stacks/new?stackName=doccano&templateURL=https://doccano.s3.amazonaws.com/public/cloudformation/template.aws.yaml) |
  106. | Heroku | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fdoccano%2Fdoccano) |
  107. <!-- | GCP[^2] | [![GCP Cloud Run PNG Button](https://storage.googleapis.com/gweb-cloudblog-publish/images/run_on_google_cloud.max-300x300.png)](https://console.cloud.google.com/cloudshell/editor?shellonly=true&cloudshell_image=gcr.io/cloudrun/button&cloudshell_git_repo=https://github.com/doccano/doccano.git&cloudshell_git_branch=CloudRunButton) | -->
  108. > [^1]: (1) EC2 KeyPair cannot be created automatically, so make sure you have an existing EC2 KeyPair in one region. Or [create one yourself](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-key-pairs.html#having-ec2-create-your-key-pair). (2) If you want to access doccano via HTTPS in AWS, here is an [instruction](https://github.com/doccano/doccano/wiki/HTTPS-setting-for-doccano-in-AWS).
  109. <!-- > [^2]: Although this is a very cheap option, it is only suitable for very small teams (up to 80 concurrent requests). Read more on [Cloud Run docs](https://cloud.google.com/run/docs/concepts). -->
  110. ## FAQ
  111. - [How to create a user](https://doccano.github.io/doccano/faq/#how-to-create-a-user)
  112. - [How to add a user to your project](https://doccano.github.io/doccano/faq/#how-to-add-a-user-to-your-project)
  113. - [How to change the password](https://doccano.github.io/doccano/faq/#how-to-change-the-password)
  114. See the [documentation](https://doccano.github.io/doccano/) for details.
  115. ## Contribution
  116. As with any software, doccano is under continuous development. If you have requests for features, please file an issue describing your request. Also, if you want to see work towards a specific feature, feel free to contribute by working towards it. The standard procedure is to fork the repository, add a feature, fix a bug, then file a pull request that your changes are to be merged into the main repository and included in the next release.
  117. Here are some tips might be helpful. [How to Contribute to Doccano Project](https://github.com/doccano/doccano/wiki/How-to-Contribute-to-Doccano-Project)
  118. ## Citation
  119. ```tex
  120. @misc{doccano,
  121. title={{doccano}: Text Annotation Tool for Human},
  122. url={https://github.com/doccano/doccano},
  123. note={Software available from https://github.com/doccano/doccano},
  124. author={
  125. Hiroki Nakayama and
  126. Takahiro Kubo and
  127. Junya Kamura and
  128. Yasufumi Taniguchi and
  129. Xu Liang},
  130. year={2018},
  131. }
  132. ```
  133. ## Contact
  134. For help and feedback, feel free to contact [the author](https://github.com/Hironsan).