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.

191 lines
6.3 KiB

6 years ago
4 years ago
6 years ago
6 years ago
4 years ago
4 years ago
4 years ago
6 years ago
4 years ago
4 years ago
6 years ago
4 years ago
6 years ago
4 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://api.codacy.com/project/badge/Grade/98a0992c0a254d0ba23fd75631fe2907)](https://app.codacy.com/app/Hironsan/doccano?utm_source=github.com&utm_medium=referral&utm_content=doccano/doccano&utm_campaign=Badge_Grade_Dashboard)
  6. [![Build Status](https://travis-ci.com/doccano/doccano.svg?branch=master)](https://travis-ci.com/doccano/doccano)
  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. ## Features
  12. - Collaborative annotation
  13. - Multi-language support
  14. - Mobile support
  15. - Emoji :smile: support
  16. - Dark theme
  17. - RESTful API
  18. ## Usage
  19. Three options to run doccano:
  20. - pip(experimental)
  21. - Docker
  22. - Docker Compose
  23. - production
  24. - development
  25. For docker and docker compose, you need to install dependencies:
  26. - [Git](https://git-scm.com)
  27. - [Docker](https://www.docker.com)
  28. - [Docker Compose](https://docs.docker.com/compose)
  29. ### pip installation
  30. To install doccano, simply run:
  31. ```bash
  32. pip install doccano
  33. ```
  34. After installation, simply run the following command:
  35. ```bash
  36. doccano
  37. ```
  38. Go to <http://0.0.0.0:8000/>.
  39. ### Docker
  40. As a one-time setup, create a Docker container as follows:
  41. ```bash
  42. docker pull doccano/doccano
  43. docker container create --name doccano \
  44. -e "ADMIN_USERNAME=admin" \
  45. -e "ADMIN_EMAIL=admin@example.com" \
  46. -e "ADMIN_PASSWORD=password" \
  47. -p 8000:8000 doccano/doccano
  48. ```
  49. Next, start doccano by running the container:
  50. ```bash
  51. docker container start doccano
  52. ```
  53. To stop the container, run `docker container stop doccano -t 5`.
  54. All data created in the container will persist across restarts.
  55. Go to <http://127.0.0.1:8000/>.
  56. ### Docker Compose
  57. You need to clone the repository:
  58. ```bash
  59. git clone https://github.com/doccano/doccano.git
  60. cd doccano
  61. ```
  62. _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.
  63. ```bash
  64. git clone https://github.com/doccano/doccano.git --config core.autocrlf=input
  65. ```
  66. #### Production
  67. Set the superuser account credentials in the `docker-compose.prod.yml` file:
  68. ```yml
  69. ADMIN_USERNAME: "admin"
  70. ADMIN_PASSWORD: "password"
  71. ```
  72. If you use Google Analytics, set the tracking:
  73. ```yml
  74. GOOGLE_TRACKING_ID: "UA-12345678-1"
  75. ```
  76. Run doccano:
  77. ```bash
  78. $ docker-compose -f docker-compose.prod.yml up
  79. ```
  80. Go to <http://0.0.0.0/>.
  81. #### Development
  82. Set the superuser account credentials in the `docker-compose.dev.yml` file:
  83. ```yml
  84. ADMIN_USERNAME: "admin"
  85. ADMIN_PASSWORD: "password"
  86. ```
  87. Run Doccano:
  88. ```bash
  89. $ docker-compose -f docker-compose.dev.yml up
  90. ```
  91. Go to <http://127.0.0.1:3000/>.
  92. Run Backend API-Tests:
  93. You can run the API-Tests for the backend with the following command:
  94. ```bash
  95. docker exec doccano_backend_1 pipenv run app/manage.py test api
  96. ```
  97. ### Add annotators (optionally)
  98. If you want to add annotators/annotation approvers, see [Frequently Asked Questions](./docs/faq.md)
  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. | Azure | [![Deploy to Azure](https://azuredeploy.net/deploybutton.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fdoccano%2Fdoccano%2Fmaster%2Fazuredeploy.json) |
  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. | Heroku | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fdoccano%2Fdoccano) |
  106. > [^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).
  107. > [^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).
  108. ## Documentation
  109. See [here](https://doccano.github.io/doccano/).
  110. ## Contribution
  111. 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.
  112. 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)
  113. ## Citation
  114. ```tex
  115. @misc{doccano,
  116. title={{doccano}: Text Annotation Tool for Human},
  117. url={https://github.com/doccano/doccano},
  118. note={Software available from https://github.com/doccano/doccano},
  119. author={
  120. Hiroki Nakayama and
  121. Takahiro Kubo and
  122. Junya Kamura and
  123. Yasufumi Taniguchi and
  124. Xu Liang},
  125. year={2018},
  126. }
  127. ```
  128. ## Contact
  129. For help and feedback, please feel free to contact [the author](https://github.com/Hironsan).