You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ While this guide explains the *what*, *why* and *how*, I find it helpful to see
47
47
1.[JSHint](#js-hint)
48
48
1.[Constants](#constants)
49
49
1.[File Templates and Snippets](#file-templates-and-snippets)
50
+
1.[Yeoman Generator](#yeoman-generator)
50
51
1.[AngularJS Docs](#angularjs-docs)
51
52
1.[Contributing](#contributing)
52
53
1.[License](#license)
@@ -2708,6 +2709,28 @@ Use file templates or snippets to help follow consistent styles and patterns. He
2708
2709
2709
2710
**[Back to top](#table-of-contents)**
2710
2711
2712
+
## Yeoman Generator
2713
+
You can use the [HotTowel yeoman generator](http://jpapa.me/yohottowel) to create an app that serves as a starting point for Angular that follows this style guide.
2714
+
2715
+
1. Install generator-hottowel
2716
+
2717
+
```
2718
+
npm install -g generator-hottowel
2719
+
```
2720
+
2721
+
2. Create a new folder and change directory to it
2722
+
2723
+
```
2724
+
mkdir myapp
2725
+
cd myapp
2726
+
```
2727
+
2728
+
3. Run the generator
2729
+
2730
+
```
2731
+
yo hottowel helloWorld
2732
+
```
2733
+
2711
2734
## AngularJS docs
2712
2735
For anything else, API reference, check the [Angular documentation](//docs.angularjs.org/api).
2713
2736
@@ -2718,8 +2741,8 @@ Open an issue first to discuss potential changes/additions. If you have question
2718
2741
*By contributing to this repository you are agreeing to make your content available subject to the license of this repository.*
2719
2742
2720
2743
### Process
2721
-
1. Discuss the changes in an Issue.
2722
-
2. Open a Pull Request, reference the issue, and explain the change and why it adds value.
2744
+
1. Discuss the changes in a GitHub issue.
2745
+
2. Open a Pull Request against the develop branch, reference the issue, and explain the change and why it adds value.
2723
2746
3. The Pull Request will be evaluated and either merged or declined.
0 commit comments