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.

237 lines
7.8 KiB

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