Skip to content

Commit 712c0a3

Browse files
authored
Merge pull request doccano#409 from louisguitton/docs-cleanup
Cleanup mkdocs website
2 parents 16fe7e8 + 11e25ad commit 712c0a3

File tree

4 files changed

+35
-37
lines changed

4 files changed

+35
-37
lines changed

docs/faq.md

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,36 @@
33
Following list is ordered by from easy to hard. If you are not familiar with Python development, please consider easy setup.
44

55
1. [One click deployment to Cloud Service.](https://github.com/chakki-works/doccano#deployment)
6-
* Only you have to do is create an account. Especially [Heroku](https://www.heroku.com/home) does not require your credit card (if free plan).
7-
* [![Deploy to Azure](https://azuredeploy.net/deploybutton.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fchakki-works%2Fdoccano%2Fmaster%2Fazuredeploy.json)
8-
* [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
9-
* [![AWS CloudFormation Launch Stack SVG Button](https://cdn.rawgit.com/buildkite/cloudformation-launch-stack-button-svg/master/launch-stack.svg)](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://s3-external-1.amazonaws.com/cf-templates-10vry9l3mp71r-us-east-1/20190732wl-new.templatexloywxxyimi&stackName=doccano)
10-
* > Notice: (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/chakki-works/doccano/wiki/HTTPS-setting-for-doccano-in-AWS).
6+
* Only you have to do is create an account. Especially [Heroku](https://www.heroku.com/home) does not require your credit card (if free plan).
7+
* [![Deploy to Azure](https://azuredeploy.net/deploybutton.svg)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fchakki-works%2Fdoccano%2Fmaster%2Fazuredeploy.json)
8+
* [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy)
9+
* [![AWS CloudFormation Launch Stack SVG Button](https://cdn.rawgit.com/buildkite/cloudformation-launch-stack-button-svg/master/launch-stack.svg)](https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/create/review?templateURL=https://s3-external-1.amazonaws.com/cf-templates-10vry9l3mp71r-us-east-1/20190732wl-new.templatexloywxxyimi&stackName=doccano)
10+
* > Notice: (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/chakki-works/doccano/wiki/HTTPS-setting-for-doccano-in-AWS).
1111
2. [Use Docker](https://docs.docker.com/install/)
12-
* Docker doesn't bother you by the OS, Python version, etc problems. Because an environment for application is packed as a container.
13-
* Get doccano's image: `docker pull chakkiworks/doccano`
14-
* Create & Run doccano container: `docker run -d --name doccano -p 8000:80 chakkiworks/doccano`
15-
* Create a user: `docker exec doccano tools/create-admin.sh "admin" "[email protected]" "password"`
16-
* Stop doccano container: `docker stop doccano`
17-
* Re-Launch doccano container: `docker start doccano`
12+
* Docker doesn't bother you by the OS, Python version, etc problems. Because an environment for application is packed as a container.
13+
* Get doccano's image: `docker pull chakkiworks/doccano`
14+
* Create & Run doccano container: `docker run -d --name doccano -p 8000:80 chakkiworks/doccano`
15+
* Create a user: `docker exec doccano tools/create-admin.sh "admin" "[email protected]" "password"`
16+
* Stop doccano container: `docker stop doccano`
17+
* Re-Launch doccano container: `docker start doccano`
1818
3. Install from source
19-
* **I want to remember you that this is the hardest setup way. You have to install Python/Node.js and type many commands.**
20-
* [Install Python](https://www.python.org/downloads/)
21-
* [Install Node.js](https://nodejs.org/en/download/)
22-
* Get the source code of doccano: `git clone https://github.com/chakki-works/doccano.git`
23-
* Move to doccano directory: `cd doccano`
24-
* Create environment for doccano: `virtualenv venv`
25-
* Activate environment: `source venv/bin/activate`
26-
* Install required packages: `pip install -r requirements.txt`
27-
* Move server directory: `cd app/server`
28-
* Build frontend library: `npm install`
29-
* Build frontend source code: `npm run build`
30-
* Back to server directory: `cd ../`
31-
* Initialize doccano: `python manage.py migrate`
32-
* Create user: `python manage.py createsuperuser`
33-
* Run doccano: `python manage.py runserver`
34-
* Stop doccano: Ctrl+C
35-
* Re-Launch doccano: `python manage.py runserver` (Confirm you are at `app/server` directory and environment is active).
19+
* **I want to remember you that this is the hardest setup way. You have to install Python/Node.js and type many commands.**
20+
* [Install Python](https://www.python.org/downloads/)
21+
* [Install Node.js](https://nodejs.org/en/download/)
22+
* Get the source code of doccano: `git clone https://github.com/chakki-works/doccano.git`
23+
* Move to doccano directory: `cd doccano`
24+
* Create environment for doccano: `virtualenv venv`
25+
* Activate environment: `source venv/bin/activate`
26+
* Install required packages: `pip install -r requirements.txt`
27+
* Move server directory: `cd app/server`
28+
* Build frontend library: `npm install`
29+
* Build frontend source code: `npm run build`
30+
* Back to server directory: `cd ../`
31+
* Initialize doccano: `python manage.py migrate`
32+
* Create user: `python manage.py createsuperuser`
33+
* Run doccano: `python manage.py runserver`
34+
* Stop doccano: Ctrl+C
35+
* Re-Launch doccano: `python manage.py runserver` (Confirm you are at `app/server` directory and environment is active).
3636

3737
## I can't upload my data.
3838

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Welcome to doccano
22

3-
## Text Annotation for Human
3+
## Text Annotation for Humans
44

5-
doccano is an open source text annotation tool for human. It provides annotation features for text classification, sequence labeling and sequence to sequence. So, you can create labeled data for sentiment analysis, named entity recognition, text summarization and so on. Just create project, upload data and start annotation. You can build dataset in hours.
5+
doccano is an open source text annotation tool built for human beings. It provides annotation features for text classification, sequence labeling and sequence to sequence. So, you can create labeled data for sentiment analysis, named entity recognition, text summarization and so on. Just create project, upload your data and start annotating. You can build a dataset in hours.
66

77

88
## Demo
99

10-
You can enjoy [annotation demo](http://doccano.herokuapp.com).
10+
You can enjoy this [annotation demo](http://doccano.herokuapp.com).
1111

1212
### [Named entity recognition](https://doccano.herokuapp.com/demo/named-entity-recognition/)
1313

14-
First demo is one of the sequence labeling tasks, named-entity recognition. You just select text spans and annotate it. Since doccano supports shortcut key, so you can quickly annotate text spans.
14+
First demo is one of the sequence labeling tasks, named-entity recognition. You just select text spans and annotate them. Since doccano supports shortcut keys, you can quickly annotate text spans.
1515

1616
![Named Entity Recognition](./named_entity_annotation.gif)
1717

@@ -23,7 +23,7 @@ Second demo is one of the text classification tasks, topic classification. Since
2323

2424
### [Machine translation](https://doccano.herokuapp.com/demo/translation/)
2525

26-
Final demo is one of the sequence to sequence tasks, machine translation. Since there may be more than one responses in sequence to sequence tasks, you can create multi responses.
26+
Final demo is one of the sequence to sequence tasks, machine translation. Since there may be more than one responses in sequence to sequence tasks, you can create multiple responses.
2727

2828
![Machine Translation](./translation.gif)
2929

docs/roadmap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Introduction
1+
# Roadmap
22

33
Doccano is a fast-moving, community supported project. This roadmap provides guidance about priorities and focus areas of the doccano team and lists the functionality expected in upcoming releases of doccano. Many of these areas are driven by community use cases, and we welcome further contributions to doccano.
44

mkdocs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Project information
22
site_name: 'doccano'
3-
site_description: 'A Text Annotation tool for Human'
3+
site_description: 'A Text Annotation tool for Humans'
44
site_author: 'Hiroki Nakayama'
55
site_url: 'https://chakki-works.github.io/doccano/'
66

@@ -36,7 +36,5 @@ nav:
3636
#- Release notes: release-notes.md
3737
#- Author's notes: authors-notes.md
3838
- FAQ: faq.md
39-
- Contributing: CONTRIBUTING.md
4039
- Code of Conduct: CODE_OF_CONDUCT.md
4140
- Roadmap: roadmap.md
42-
- License: LICENSE.md

0 commit comments

Comments
 (0)