1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

feature #3748: Fix sunstone readme style

This commit is contained in:
Daniel Molina 2015-07-20 18:08:21 +02:00
parent 894a8bcee4
commit 2cfccc0fb6

View File

@ -3,21 +3,29 @@ Sunstone depnedencies
1. Install nodejs and npm
2. Install the following npm packages:
`sudo npm install -g bower`
`sudo npm install -g grunt`
`sudo npm install -g grunt-cli`
```
sudo npm install -g bower
sudo npm install -g grunt
sudo npm install -g grunt-cli
```
3. Move to the Sunstone public folder and run:
`npm install`
`bower install`
```
npm install
bower install
```
Building minified JS and CSS files
==================================
4. Run the following command to generate the app.css file in the css folder:
`grunt sass`
```
grunt sass
```
5. Run the following command to generate the minified js files in the dist foler
and the app.min.css in the css folder:
`grunt requirejs`
```
grunt requirejs
```
These are the files generate by the grunt requirejs command:
```
@ -33,7 +41,9 @@ Scons
=====
Scons includes an option to build the minified JS and CSS files. Steps 1, 2 and 3 have to be performed before running this command
`scons sunstone=yes`
```
scons sunstone=yes
```
Install.sh
==========