Skip to content

Commit 13f20ba

Browse files
authored
docs(getting-started): add step1-overview (stub)
[skip ci]
1 parent fe34e78 commit 13f20ba

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Diff for: docs/getting-started/step1-overview.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[#STUB]
2+
3+
# Project Overview
4+
5+
Now that you've got a Full-Stack Angular project scaffolded, lets go over how everything is structured.
6+
7+
The first thing you should notice at the root of where you ran the generator is a `README.md` file.
8+
Go ahead and listen to the angry filename and read it, then come back here.
9+
10+
You should have everything you need installed now. Find the `package.json` file.
11+
That file tells npm which dependencies to install, as well as a few other things about your app.
12+
13+
Now find the `gulpfile.babel.js`. Pretty much everthing you do with your app from now on will have something to do with this file.
14+
[Gulp](http://gulpjs.com/) is a task runner that runs on top of Node. It automates tasks such as compiling code, copying files,
15+
running different test commands, running your server, building your code for distribution, and on and on.
16+
Let's go over some of the most important Gulp tasks:
17+
18+
* `serve` -
19+
* `build` -
20+
* `test` -
21+
22+
[webpack]

0 commit comments

Comments
 (0)