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: _app/README.md
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# <%= projectName %>[](https://github.com/yoshuawuyts/choo)
1
+
# <%= projectName %>
2
2
3
3
Choo-cli created a directory structure that [we've found to be optimal](https://yoshuawuyts.gitbooks.io/choo/content/guides/designing-for-reusability.html) for slim
4
4
applications and reusability.
@@ -8,7 +8,7 @@ assets/ images and fonts, if you have any
8
8
elements/ standalone application-specific elements
9
9
lib/ generalized components, should be moved out of project later
10
10
pages/ views that are directly mounted on the router
11
-
scripts/ shell scripts, to be interfaced with through `npm scripts`
11
+
stores/ stores that are used in pages and elements
12
12
client.js main application entry; programmatic manifest file
13
13
package.json manifest file
14
14
```
@@ -26,6 +26,11 @@ Elements
26
26
$ choo generate element my-element
27
27
```
28
28
29
+
Stores
30
+
```bash
31
+
$ choo generate store my-store
32
+
```
33
+
29
34
## npm scripts
30
35
31
36
Choo-cli was made for generating choo projects and code, and leverages npm scripts
0 commit comments