Skip to content

Commit d11b543

Browse files
authored
Merge pull request #123 from HackSoftware/readme/quick-update
Update README
2 parents b6591fe + 155cb7b commit d11b543

File tree

3 files changed

+22
-13
lines changed

3 files changed

+22
-13
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ build/Release
3535
# Dependency directories
3636
node_modules/
3737
jspm_packages/
38+
package*.json
3839

3940
# TypeScript v1 declaration files
4041
typings/

README.md

+20-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
11
![Django Styleguide](logo.png)
22

3-
---
4-
5-
## 📢 **The Django Styleguide Survey has ended. Expect results soon.** 📢
6-
7-
1. More about it here - <https://www.hacksoft.io/blog/django-styleguide-survey>.
8-
1. Issue where we track the feedback - <https://github.com/HackSoftware/Django-Styleguide/issues/90>.
9-
10-
---
11-
123
**Table of contents:**
134

145
<!-- toc -->
156

7+
- [How to ask a question or propose something?](#how-to-ask-a-question-or-propose-something)
168
- [What is this?](#what-is-this)
179
- [How to use it?](#how-to-use-it)
1810
- [Overview](#overview)
@@ -74,11 +66,21 @@
7466
- [DX (Developer Experience)](#dx-developer-experience)
7567
* [`mypy` / type annotations](#mypy--type-annotations)
7668
- [Django Styleguide in the Wild](#django-styleguide-in-the-wild)
77-
- [Additional resources](#additional-resources)
69+
- [Additional resources / Alternatives](#additional-resources--alternatives)
7870
- [Inspiration](#inspiration)
7971

8072
<!-- tocstop -->
8173

74+
## How to ask a question or propose something?
75+
76+
Few points to navigate yourself:
77+
78+
1. If you've read the Django Styleguide & you have questions or suggestions, **the simplest thing you can is to open an issue.** We will respond.
79+
1. Even if you have a question that you are not sure if it's related to the Django Styleguide - **just open an issue anyway.** We will respond.
80+
1. **If you want to see a code example**, make sure to head to the [Django Styleguide Example](https://github.com/HackSoftware/Django-Styleguide-Example) repository. We treat this as a "Django test project", combining best practices & also [examples from our blog](https://www.hacksoft.io/blog).
81+
82+
That's about it ✨
83+
8284
## What is this?
8385

8486
Hello 👋
@@ -97,6 +99,10 @@ This is the Django Styleguide, created by us, the folks at [HackSoft](https://ha
9799

98100
[![Django structure for scale and longevity by Radoslav Georgiev](https://img.youtube.com/vi/yG3ZdxBb1oo/0.jpg)](https://www.youtube.com/watch?v=yG3ZdxBb1oo)
99101

102+
**You can also watch Radoslav Georgiev & Ivaylo Bachvarov's [discussion on HackCast, around the Django Styleguide](https://www.youtube.com/watch?v=9VfRaPECbpY):**
103+
104+
[![HackCast S02E08 - Django Community & Django Styleguide](https://img.youtube.com/vi/9VfRaPECbpY/0.jpg)](https://www.youtube.com/watch?v=9VfRaPECbpY)
105+
100106
## How to use it?
101107

102108
When it comes to the Django Styleguide, **there are 3 general ways of using it:**
@@ -2760,11 +2766,13 @@ Here's a collection of different folks & companies, that have found the stylegui
27602766
27612767
---
27622768

2763-
## Additional resources
2769+
## Additional resources / Alternatives
27642770

2765-
Additional resources that we found useful and that can add value to the styleguide.
2771+
Additional resources & other alternatives that we found useful and that can add value to the styleguide.
27662772

27672773
- [Dan Palmer - Scaling Django to 500 apps (DjangoCon US 2021)](https://www.youtube.com/watch?v=NsHo-kThlqI)
2774+
- [Django API Domains](https://phalt.github.io/django-api-domains/)
2775+
- [A YC News discussion around the Django Styleguide](https://news.ycombinator.com/item?id=34337667) - you can potentially find additional useful things here.
27682776

27692777
## Inspiration
27702778

tools/update_toc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
def get_new_toc():
66
new_toc = check_output(
7-
'markdown-toc README.md',
7+
'node_modules/.bin/markdown-toc README.md',
88
shell=True
99
).decode('utf-8')
1010

0 commit comments

Comments
 (0)