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.

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