embark-area-51/docs/structuring-application.rst

23 lines
486 B
ReStructuredText
Raw Normal View History

2017-01-14 18:11:43 -05:00
Structuring Application
=======================
Embark is quite flexible and you can configure you're own directory
structure using ``embark.json``
.. code:: json
# embark.json
{
2018-03-15 16:11:42 -04:00
"contracts": ["contracts/**"],
2017-01-14 18:11:43 -05:00
"app": {
2018-03-15 16:11:42 -04:00
"js/app.js": ["app/dapp.js"],
"index.html": "app/index.html",
2017-01-14 18:11:43 -05:00
"css/app.css": ["app/css/**"],
2018-03-15 16:11:42 -04:00
"images/": ["app/images/**"]
2017-01-14 18:11:43 -05:00
},
"buildDir": "dist/",
2017-02-06 20:59:36 -05:00
"config": "config/",
"plugins": {}
2017-01-14 18:11:43 -05:00
}
2017-02-06 20:59:36 -05:00