yunohost-admin/src
2016-03-19 11:06:37 +01:00
..
css [enh] Remove SourcePro fonts from source, use bower too. 2016-03-05 15:10:39 +01:00
img [fix] Move sources to a dedicated folder. 2015-02-01 02:35:44 +01:00
js/yunohost [enh] Scroll to Top to view new messages. 2016-03-19 11:06:37 +01:00
locales [enh] Add diagnosis. #39 2016-03-14 11:19:02 +01:00
views [fix] Only display apps with backup script on backup creation page. #227 2016-03-18 10:49:22 +01:00
.jshintrc [enh] Pass jshint. 2015-08-29 15:45:00 +02:00
bower.json [fix] Use fixed version for bower components. 2016-03-05 17:40:04 +01:00
gulpfile.js [fix] Watch all js subdirectories with gulp 2016-03-15 21:33:35 +01:00
index.html [fix] Revert hardcoded version introduced in 0f8350a1e3 2016-03-05 10:28:03 +01:00
package.json [fix] NPM package bugtracker url. 2016-03-05 17:39:44 +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)