From 649fce2edec4426837adb12a25d529713dc6dbd2 Mon Sep 17 00:00:00 2001 From: Alexander Kurakin Date: Mon, 18 May 2020 19:00:56 +0300 Subject: [PATCH] Mention v0.x files in a right way (#784) --- docs/project_structure.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/docs/project_structure.md b/docs/project_structure.md index ab28a73b..7ece9c27 100644 --- a/docs/project_structure.md +++ b/docs/project_structure.md @@ -2,7 +2,7 @@ The important files/directories are as follows: -```bash +``` / ├── app/ ├── frontend/ @@ -40,18 +40,27 @@ The `nginx` directory contains a NGINX configuration file and Docker container. The `tools` directory contains some shell scripts. They are used for CI, CD and so on. +Also, there are directories and files contain doccano v0.x codes. +In the future, they will be integrated into the currect code or removed: + +``` +/ +├── app/ +├── └── server/ +└── docker-compose.prod.yml +``` + ## Backend The directory structure of the backend follows [Django](https://www.djangoproject.com) one. The important directories are as follows: -```bash +``` / ├── app/ ├── ├── api/ ├── ├── app/ -├── ├── authentification/ -└── └── server/ +└── └── authentification/ ``` **[app/api/](https://github.com/doccano/doccano/tree/master/app/api)** @@ -67,10 +76,6 @@ The `app/app` directory contains Django project settings. See [Writing your firs The `app/authentification` directory contains authentification application. It is mainly used for user signup. -**[app/server/](https://github.com/doccano/doccano/tree/master/app/server)** - -The `app/server` directory contains doccano v0.x codes. In the future, this directory will be integrated into the `api` directory. - ## Frontend The `frontent` directory structure of the frontend follows [Nuxt.js](https://ru.nuxtjs.org) one.