summaryrefslogtreecommitdiff
path: root/docs/assets.markdown
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-04-11 16:53:07 -0400
committerFrederic Guillot <fred@kanboard.net>2015-04-11 16:53:07 -0400
commitd748b4f4c08ea3eeb1d4ac60d0b2637f8b30d93b (patch)
treee2a14fd2845175e30b1c566bdc61ba65f8bc52f5 /docs/assets.markdown
parent05b1cfd98cdad95d6f5702db6cf4b1dae9c83d5f (diff)
Improve doc to build assets
Diffstat (limited to 'docs/assets.markdown')
-rw-r--r--docs/assets.markdown11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/assets.markdown b/docs/assets.markdown
index d902cb6d..41776fca 100644
--- a/docs/assets.markdown
+++ b/docs/assets.markdown
@@ -1,12 +1,17 @@
How to build assets (Javascript and CSS files)?
===============================================
-Kanboard use shell script for that:
+Stylesheet and Javascript files are merged together and minified.
+
+- Original CSS files are stored in the folder `assets/css/src/*.css`
+- Original Javascript code is stored in the folder `assets/js/src/*.js`
+
+To make a new build run this shell-script from a terminal:
```bash
./scripts/make-assets.sh
```
-This script generates the files `app.css` and `app.js`.
+This script generates the files `assets/css/app.css` and `assets/js/app.js`.
-This tools is only available in the repository.
+This tool is only available in the repository (development version).