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: docs/index.html
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -25,13 +25,13 @@ <h2>What it is</h2>
25
25
26
26
<h2>What it does</h2>
27
27
28
-
By working in the <code>/src</code> directory all of your changes are piped and rendered to the <code>/dest</code> folder.
28
+
By working in the <code>/src</code> directory all of your changes are piped and rendered to the <code>/dist</code> folder.
29
29
30
30
<pre>
31
-
/src/scss -> /dest/css
32
-
/src/js -> /dest/js
33
-
/src/pages -> /dest/
34
-
/src/img -> /dest/img
31
+
/src/scss -> /dist/css
32
+
/src/js -> /dist/js
33
+
/src/pages -> /dist/
34
+
/src/img -> /dist/img
35
35
</pre>
36
36
<p>
37
37
It even refreshes your browser on every change!
@@ -44,11 +44,11 @@ <h2>Requirements</h2>
44
44
<h2>Getting Started</h2>
45
45
46
46
<ol>
47
-
<li>Download this repo to your development environment.</li>
48
-
<li>Install the node modules listed in the package.json file globally. I.e., <code>sudo npm install -g [node_module]</code>
47
+
<li>Download or clone this repo to your development environment.</li>
49
48
<li>From a terminal <code>cd path/to/streambuilder</code></li>
50
-
<li>Run <code>npm install</code> This will create a new directory "node_modules" where NPM will install all the required node modules.</li>
51
-
<li>Edit the paths variable in the <code>gulpfile.js</code> file to reflect your <code>src</code> and <code>dest</code> paths as well as your application URL.</li>
49
+
<li>Install the node modules listed in the package.json file. <code>sudo npm install [node_module]</code></li>
50
+
<li>Note: you might want to install gulp as a global application <code>sudo npm install -g gulp</code> for Gulp to be visible in your command line.</li>
51
+
<li>Edit the paths variable in the <code>gulpfile.js</code> file to reflect your <code>src</code> and <code>dist</code> paths as well as your application URL.</li>
52
52
<li>Run <code>gulp</code></li>
53
53
</ol>
54
54
@@ -61,7 +61,7 @@ <h2>Production mode</h2>
61
61
62
62
<h2>Advanced configuration</h2>
63
63
<p>
64
-
You can change anything and everything about StreamBuilder by editing the gulpfile.js. By default StreamBuilder compiles everything to the /dest folder. You can chage this behavior (as well as the URL of the project) by editing the <code>paths</code> vars in the top of gulpfile.js.
64
+
You can change anything and everything about StreamBuilder by editing the gulpfile.js. By default StreamBuilder compiles everything to the /dist folder. You can chage this behavior (as well as the URL of the project) by editing the <code>paths</code> vars in the top of gulpfile.js.
65
65
</p>
66
66
<p>
67
67
StreamBuilder comes bundled with SASS and Nunjucks support. You can change this by removing the gulp-scss modules and installing the css pre-processor and template language of your choice then editing the tasks in gulpfile.js. You can find additional modules at <ahref="https://www.npmjs.com/">NPM</a>.
@@ -87,7 +87,7 @@ <h3>Goodies</h3>
87
87
<h4>Getting Help</h4>
88
88
89
89
<p>
90
-
If you find a bug or want to see a feature, file it in the <ahref="https://github.com/digi-brains/StreamBuilder/issues">issues section</a>.
90
+
If you find a bug or want to see a feature, file it in the <ahref="https://github.com/sageworksstudio/StreamBuilder/issues">issues section</a>.
0 commit comments