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.

162 lines
5.7 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
4 years ago
4 years ago
6 years ago
4 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
4 years ago
4 years ago
6 years ago
6 years ago
  1. <div align="center">
  2. <img src="./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](./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. Two options to run doccano:
  20. - production,
  21. - development.
  22. To use doccano, please follow:
  23. ### Install dependencies
  24. You need to install dependencies:
  25. - [Git](https://git-scm.com),
  26. - [Docker](https://www.docker.com),
  27. - [Docker Compose](https://docs.docker.com/compose).
  28. ### Get the code
  29. You need to clone the repository:
  30. ```bash
  31. $ git clone https://github.com/doccano/doccano.git
  32. $ cd doccano
  33. ```
  34. _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.
  35. ```bash
  36. git clone https://github.com/doccano/doccano.git --config core.autocrlf=input
  37. ```
  38. ### Production
  39. Set the superuser account credentials in the `docker-compose.prod.yml` file:
  40. ```yml
  41. ADMIN_USERNAME: "admin"
  42. ADMIN_PASSWORD: "password"
  43. ```
  44. Run doccano:
  45. ```bash
  46. $ docker-compose -f docker-compose.prod.yml up
  47. ```
  48. Go to <http://0.0.0.0/>.
  49. <!--
  50. ### Docker
  51. As a one-time setup, create a Docker container for Doccano:
  52. ```bash
  53. docker pull doccano/doccano
  54. docker container create --name doccano \
  55. -e "ADMIN_USERNAME=admin" \
  56. -e "ADMIN_EMAIL=admin@example.com" \
  57. -e "ADMIN_PASSWORD=password" \
  58. -p 8000:8000 doccano/doccano
  59. ```
  60. Next, start Doccano by running the container:
  61. ```bash
  62. docker container start doccano
  63. ```
  64. To stop the container, run `docker container stop doccano -t 5`.
  65. All data created in the container will persist across restarts.
  66. Go to <http://127.0.0.1:8000/>.
  67. -->
  68. ### Development
  69. Set the superuser account credentials in the `docker-compose.dev.yml` file:
  70. ```yml
  71. ADMIN_USERNAME: "admin"
  72. ADMIN_PASSWORD: "password"
  73. ```
  74. Run Doccano:
  75. ```bash
  76. $ docker-compose -f docker-compose.dev.yml up
  77. ```
  78. Go to <http://127.0.0.1:3000/>.
  79. ### Add annotators (optionally)
  80. If you want to add annotators/annotation approvers, see [Frequently Asked Questions](./docs/faq.md)
  81. ## One-click Deployment
  82. | Service | Button |
  83. |---------|---|
  84. | 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/create/review?stackName=doccano&templateURL=https://s3-external-1.amazonaws.com/cf-templates-10vry9l3mp71r-us-east-1/2019290i9t-AppSGl1poo4j8qpq) |
  85. | 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) |
  86. | 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/doccano&cloudshell_git_repo=https://github.com/doccano/doccano.git) |
  87. | Heroku | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fdoccano%2Fdoccano) |
  88. > [^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).
  89. > [^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).
  90. ## Contribution
  91. 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.
  92. 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)
  93. ## Citation
  94. ```tex
  95. @misc{doccano,
  96. title={{doccano}: Text Annotation Tool for Human},
  97. url={https://github.com/doccano/doccano},
  98. note={Software available from https://github.com/doccano/doccano},
  99. author={
  100. Hiroki Nakayama and
  101. Takahiro Kubo and
  102. Junya Kamura and
  103. Yasufumi Taniguchi and
  104. Xu Liang},
  105. year={2018},
  106. }
  107. ```
  108. ## Contact
  109. For help and feedback, please feel free to contact [the author](https://github.com/Hironsan).