Skip to content

Commit b4f0eac

Browse files
authored
Add yaspeller (#4)
1 parent f3b81f4 commit b4f0eac

File tree

5 files changed

+56
-5
lines changed

5 files changed

+56
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
branches:
3+
only:
4+
- master
5+
cache:
6+
directories:
7+
- node_modules
8+
node_js:
9+
- stable

.yaspellerrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"lang": "en,ru",
3+
"fileExtensions": [
4+
".md"
5+
],
6+
"ignoreCapitalization": true,
7+
"dictionary": [
8+
"django",
9+
"github",
10+
"gunicorn",
11+
"nginx",
12+
"postgres",
13+
"ru",
14+
"uwsgi",
15+
"технотрек",
16+
"хаб",
17+
"хабрахабр"
18+
]
19+
}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
- [Two Scoops of Django](https://www.twoscoopspress.com/products/two-scoops-of-django-1-8/) - must-read книга с best practices
1212
- [Tango With Django](http://www.tangowithdjango.com/)
1313

14-
## Туториалы и статьи
15-
- [Туториал от Djangogirls](https://tutorial.djangogirls.org/)
16-
- [Туториал от Mozilla](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django)
17-
- [Деплоймент связки django+psql+nginx+gunicorn на Ubuntu 16.04](https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-16-04)
18-
- [Деплоймент связки django+nginx+uwsgi на Ubuntu 14.04](https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-ubuntu-14-04)
14+
## Статьи
15+
- [Tutorial от Djangogirls](https://tutorial.djangogirls.org/)
16+
- [Tutorial от Mozilla](https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django)
17+
- [Deployment связки django+postgres+nginx+gunicorn на Ubuntu 16.04](https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-16-04)
18+
- [Deployment связки django+nginx+uwsgi на Ubuntu 14.04](https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-ubuntu-14-04)
1919

2020
## Полезные ресурсы
2121
- [Сайт для поиска и сравнения батареек](https://djangopackages.org/)

package.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "django_faq",
3+
"version": "1.0.0",
4+
"description": "FAQ telegram-чата pydjango @pydjango",
5+
"scripts": {
6+
"spellcheck": "yaspeller-ci",
7+
"test": "npm run spellcheck *.md"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/amureki/django_faq.git"
12+
},
13+
"author": "amureki",
14+
"license": "CC-BY-SA",
15+
"bugs": {
16+
"url": "https://github.com/amureki/django_faq/issues"
17+
},
18+
"homepage": "https://github.com/amureki/django_faq#readme",
19+
"devDependencies": {
20+
"yaspeller-ci": "^0.3.0"
21+
}
22+
}

0 commit comments

Comments
 (0)