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.

185 lines
6.7 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
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. So, 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. You can 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 the <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. Three options to run doccano:
  22. - pip (Python 3.8+)
  23. - Docker
  24. - Docker Compose
  25. ### pip
  26. To install doccano, simply 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 `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 following 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`.
  70. All data created in the container will persist across restarts.
  71. ### Docker Compose
  72. You need to install Git and to clone the repository:
  73. ```bash
  74. git clone https://github.com/doccano/doccano.git
  75. cd doccano
  76. ```
  77. _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.
  78. ```bash
  79. git clone https://github.com/doccano/doccano.git --config core.autocrlf=input
  80. ```
  81. 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)):
  82. ```plain
  83. # platform settings
  84. ADMIN_USERNAME=admin
  85. ADMIN_PASSWORD=password
  86. ADMIN_EMAIL=admin@example.com
  87. # rabbit mq settings
  88. RABBITMQ_DEFAULT_USER=doccano
  89. RABBITMQ_DEFAULT_PASS=doccano
  90. # database settings
  91. POSTGRES_USER=doccano
  92. POSTGRES_PASSWORD=doccano
  93. POSTGRES_DB=doccano
  94. ```
  95. After running the following command, access <http://127.0.0.1/>.
  96. ```bash
  97. docker-compose -f docker/docker-compose.prod.yml --env-file .env up
  98. ```
  99. ### One-click Deployment
  100. | Service | Button |
  101. |---------|---|
  102. | 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) |
  103. | Heroku | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fdoccano%2Fdoccano) |
  104. <!-- | 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) | -->
  105. > [^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).
  106. <!-- > [^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). -->
  107. ## FAQ
  108. - [How to create a user](https://doccano.github.io/doccano/faq/#how-to-create-a-user)
  109. - [How to add a user to your project](https://doccano.github.io/doccano/faq/#how-to-add-a-user-to-your-project)
  110. - [How to change the password](https://doccano.github.io/doccano/faq/#how-to-change-the-password)
  111. See the [documentation](https://doccano.github.io/doccano/) for details.
  112. ## Contribution
  113. 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.
  114. 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)
  115. ## Citation
  116. ```tex
  117. @misc{doccano,
  118. title={{doccano}: Text Annotation Tool for Human},
  119. url={https://github.com/doccano/doccano},
  120. note={Software available from https://github.com/doccano/doccano},
  121. author={
  122. Hiroki Nakayama and
  123. Takahiro Kubo and
  124. Junya Kamura and
  125. Yasufumi Taniguchi and
  126. Xu Liang},
  127. year={2018},
  128. }
  129. ```
  130. ## Contact
  131. For help and feedback, please feel free to contact [the author](https://github.com/Hironsan).