embark/docs/structuring-application.rst

23 lines
501 B
ReStructuredText
Raw Normal View History

2017-01-14 23:11:43 +00:00
Structuring Application
=======================
Embark is quite flexible and you can configure you're own directory
structure using ``embark.json``
.. code:: json
# embark.json
{
"contracts": ["app/contracts/**"],
"app": {
"css/app.css": ["app/css/**"],
2017-02-07 01:59:36 +00:00
"images/": ["app/images/**"],
2017-01-14 23:11:43 +00:00
"js/app.js": ["embark.js", "app/js/**"],
"index.html": "app/index.html"
},
"buildDir": "dist/",
2017-02-07 01:59:36 +00:00
"config": "config/",
"plugins": {}
2017-01-14 23:11:43 +00:00
}
2017-02-07 01:59:36 +00:00