Merge branch 'hotfix/pipeline' into 'develop'

Hotfix/pipeline

See merge request 2020-2021/online/s101/group-02/access_controller!86
This commit is contained in:
Татищев Юрий 2021-05-25 19:28:44 +00:00
commit 852a800f61
2 changed files with 11 additions and 8 deletions

View File

@ -149,22 +149,25 @@ docker run -d -p 8000:8000 \
Пример полной конфигурации можно найти в [.env.example](.env.example). Почту и токен админа ZenDesk взять у руководителя (если вы не админ).
## Для проверки pylint используем:
pylint --django-settings-module=access_controller.access_controller.settings ../access_controller (каталог, где лежит проект)
```bash
pylint --django-settings-module=access_controller.settings main
```
## Для приведения файлов к стандарту PEP8 используем:
```bash
autopep8 --in-place filename
```
##Для проверки орфографии:
cd docs
```bash
(cd docs && make spelling)
```
(set -a && source ../.env && make spelling)
##Для обновления документации:
```bash
m2r README.md
cd docs
(set -a && source ../.env && make html)
(cd docs && make html)
```
## Read more
- Zenpy: [http://docs.facetoe.com.au](http://docs.facetoe.com.au)

View File