updated readme
This commit is contained in:
parent
6896091da6
commit
baa6586252
31
README.md
31
README.md
|
@ -44,30 +44,29 @@ A production pipe-line should *NOT* be in your way while **developing**. You sho
|
|||
|
||||
1. Run `npm install`, this will install all vendor dependencies
|
||||
|
||||
2. Start coding in `src/public`
|
||||
2. Start coding in `app`
|
||||
|
||||
3. run the `public/index.html` from your favorite web server\*
|
||||
3. run the `app/index.html` from your favorite web server\*
|
||||
|
||||
> \* try `live-server` from `npm` or via [Visual Studio Code]() plug-in it's awesome!
|
||||
|
||||
### Project Structure
|
||||
|
||||
```
|
||||
src/
|
||||
public/ <-- develop here
|
||||
css/ <-- your css files
|
||||
js/ <-- your javascript files
|
||||
app.js <-- basic routing/utils bootstrap
|
||||
images/ <-- your images
|
||||
tags/ <-- web-components
|
||||
vendor/ <-- vendor dependencies, ie code you did not write
|
||||
index.html <-- start here
|
||||
... <-- web meta files
|
||||
docs/ <-- additional documentation
|
||||
test/ <-- tests (one day)
|
||||
gulpfile.js <-- task runner
|
||||
app/ <-- develop here
|
||||
css/ <-- your css files
|
||||
js/ <-- your javascript files
|
||||
app.js <-- basic routing/utils bootstrap
|
||||
images/ <-- your images
|
||||
tags/ <-- web-components
|
||||
vendor/ <-- vendor dependencies, ie code you did not write
|
||||
index.html <-- start here
|
||||
... <-- web meta files
|
||||
docs/ <-- additional documentation
|
||||
test/ <-- tests (one day)
|
||||
gulpfile.js <-- task runner
|
||||
README.md
|
||||
... <-- misc project meta files
|
||||
... <-- misc project meta files
|
||||
```
|
||||
|
||||
### Web Components
|
||||
|
|
Loading…
Reference in New Issue