yunohost-admin/src
2016-03-04 18:32:19 +01:00
..
css [enh] remove third parties from source, use bower 2016-03-04 14:40:05 +01:00
fonts [enh] remove third parties from source, use bower 2016-03-04 14:40:05 +01:00
img [fix] Move sources to a dedicated folder. 2015-02-01 02:35:44 +01:00
js/yunohost [enh] remove third parties from source, use bower 2016-03-04 14:40:05 +01:00
locales [i18n] Translated using Weblate (French) 2016-03-01 20:09:17 +01:00
views [enh] Cleanup 2016-03-02 09:14:57 +01:00
.jshintrc [enh] Pass jshint. 2015-08-29 15:45:00 +02:00
bower.json [fix] js-cookie only has 2.1.0 max 2016-03-04 18:18:45 +01:00
gulpfile.js [enh] remove third parties from source, use bower 2016-03-04 14:40:05 +01:00
index.html [enh] remove dist folder from src. it is generated during build 2016-03-04 15:15:24 +01:00
package.json [fix] debian/stable npm does not seem to support several postinstall scripts 2016-03-04 18:19:25 +01:00
README.md [doc] Update README 2016-03-04 18:32:19 +01:00

YunoHost Web Admin

This is a JavaScript client to the YunoHost moulinette API.

Hack

On a YunoHost instance, the web admin files are located on /usr/share/yunohost/admin. In order to fetch the latest development version and hack it, you will roughly have to:

# Fetch sources
cd /usr/share/yunohost/
mv admin admin.back
git clone https://github.com/YunoHost/yunohost-admin
ln -s /usr/share/yunohost/yunohost-admin/src admin

# Install Gulp
apt-get install nodejs nodejs-legacy npm -y
cd admin
npm install
node_modules/.bin/bower install
node_modules/.bin/gulp build

You are now ready to modify the interface. Do not hesitate to run node_modules/.bin/gulp watch when you modify .js and .css files, since they need to be rebuilt.

Note: The .ms - moustache - files are cached by the browser. You have to reach them manually every time you change them. (e.g. go to https://example.com/yunohost/admin/views/domain/domain_list.ms)