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.

196 lines
7.1 KiB

6 years ago
6 years ago
6 years ago
4 years ago
4 years ago
4 years ago
2 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. ## 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 (Python 3.8+)
  21. - Docker
  22. - Docker Compose
  23. ### pip
  24. To install doccano, simply run:
  25. ```bash
  26. pip install doccano
  27. ```
  28. By default, SQLite 3 is used for the default database. If you want to use PostgreSQL, install the additional dependencies:
  29. ```bash
  30. pip install 'doccano[postgresql]'
  31. ```
  32. and set `DATABASE_URL` environment variable according to your PostgreSQL credentials:
  33. ```bash
  34. DATABASE_URL="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}?sslmode=disable"
  35. ```
  36. After installation, run the following commands:
  37. ```bash
  38. # Initialize database.
  39. doccano init
  40. # Create a super user.
  41. doccano createuser --username admin --password pass
  42. # Start a web server.
  43. doccano webserver --port 8000
  44. ```
  45. In another terminal, run the following command:
  46. ```bash
  47. # Start the task queue to handle file upload/download.
  48. doccano task
  49. ```
  50. Go to <http://127.0.0.1:8000/>.
  51. ### Docker
  52. As a one-time setup, create a Docker container as follows:
  53. ```bash
  54. docker pull doccano/doccano
  55. docker container create --name doccano \
  56. -e "ADMIN_USERNAME=admin" \
  57. -e "ADMIN_EMAIL=admin@example.com" \
  58. -e "ADMIN_PASSWORD=password" \
  59. -p 8000:8000 doccano/doccano
  60. ```
  61. Next, start doccano by running the container:
  62. ```bash
  63. docker container start doccano
  64. ```
  65. Go to <http://127.0.0.1:8000/>.
  66. To stop the container, run `docker container stop doccano -t 5`.
  67. All data created in the container will persist across restarts.
  68. ### Docker Compose
  69. You need to install Git and to clone the repository:
  70. ```bash
  71. git clone https://github.com/doccano/doccano.git
  72. cd doccano
  73. ```
  74. _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.
  75. ```bash
  76. git clone https://github.com/doccano/doccano.git --config core.autocrlf=input
  77. ```
  78. Then, create an `.env` file with variables in the following format (see [./config/.env.example](https://github.com/doccano/doccano/blob/master/config/.env.example)):
  79. ```plain
  80. # platform settings
  81. ADMIN_USERNAME=admin
  82. ADMIN_PASSWORD=password
  83. ADMIN_EMAIL=admin@example.com
  84. # rabbit mq settings
  85. RABBITMQ_DEFAULT_USER=doccano
  86. RABBITMQ_DEFAULT_PASS=doccano
  87. # database settings
  88. POSTGRES_USER=doccano
  89. POSTGRES_PASSWORD=doccano
  90. POSTGRES_DB=doccano
  91. ```
  92. #### Production
  93. After running the following command, access <http://127.0.0.1/>.
  94. ```bash
  95. docker-compose -f docker-compose.prod.yml --env-file ./config/.env.example up
  96. ```
  97. #### Development
  98. After running the following command, access <http://127.0.0.1:3000/>. If you want to use the admin site, please access <http://127.0.0.1:8000/admin/>.
  99. ```bash
  100. docker-compose -f docker-compose.dev.yml --env-file ./config/.env.example up
  101. ```
  102. You can run the the test codes for the backend with the following command:
  103. ```bash
  104. docker exec doccano_backend_1 python backend/manage.py test api
  105. ```
  106. ### One-click Deployment
  107. | Service | Button |
  108. |---------|---|
  109. | 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) |
  110. | Heroku | [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fdoccano%2Fdoccano) |
  111. <!-- | 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) | -->
  112. > [^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).
  113. <!-- > [^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). -->
  114. ## FAQ
  115. - [How to create a user](https://doccano.github.io/doccano/faq/#how-to-create-a-user)
  116. - [How to add a user to your project](https://doccano.github.io/doccano/faq/#how-to-add-a-user-to-your-project)
  117. - [How to change the password](https://doccano.github.io/doccano/faq/#how-to-change-the-password)
  118. See the [documentation](https://doccano.github.io/doccano/) for details.
  119. ## Contribution
  120. 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.
  121. 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)
  122. ## Citation
  123. ```tex
  124. @misc{doccano,
  125. title={{doccano}: Text Annotation Tool for Human},
  126. url={https://github.com/doccano/doccano},
  127. note={Software available from https://github.com/doccano/doccano},
  128. author={
  129. Hiroki Nakayama and
  130. Takahiro Kubo and
  131. Junya Kamura and
  132. Yasufumi Taniguchi and
  133. Xu Liang},
  134. year={2018},
  135. }
  136. ```
  137. ## Contact
  138. For help and feedback, please feel free to contact [the author](https://github.com/Hironsan).