Page 1 of 1

How to install icarus

Posted: 04 Jan 2018, 14:02
by christianfdo0p
I bougth icarus an i need help to install, i try to use the demo but dont work

Re: How to install icarus

Posted: 17 Jan 2018, 16:23
by Jorge
You would want to be more specific on what didn't work.

What was the procedure you used, how is your application configured, etc. I also bought the Icarus and just followed the orientations on the Documentation section and it is ok. You would need some background with this sort of technology of course. So explain what exactly you did so we can be of help.

Re: How to install icarus

Posted: 09 Feb 2018, 13:51
by mert.sincan
Please try;

Firstly, you need to provide CSS files from Sass files using the following command in command line;

Code: Select all

sass -w src/main/webapp/resources/ --sourcemap=none
then, mvn jetty:run

Sass install; https://sass-lang.com/install

OR

1) to use *-theme.jar in your project
(Windows PC)
-Please open Command Prompt in your pc
(If no maven in your pc, https://www.youtube.com/watch?v=Jtj-0yhox5s)
-To install theme.jar in the local repository;

Code: Select all

mvn install:install-file -Dfile=<path-to-file> -DgroupId=org.primefaces.themes -DartifactId=<theme_name> -Dversion=<theme_version> -Dpackaging=jar
<path-to-file> -> where is the jar?
- please add this dependency in pom.xml of your project

Code: Select all

<dependency>
   <groupId>org.primefaces.themes</groupId>
   <artifactId>theme_name</artifactId>
   <version>theme_version</version>
</dependency>
- please add this context-param in web.xml of your project

Code: Select all

<context-param>
   <param-name>primefaces.THEME</param-name>
   <param-value>theme_name</param-value>
</context-param>
2) to use our sample maven project
- Please add war file in an IDE such as Netbeans
You can execute the sample with mvn jetty:run command

OR

I think these links can help to you to integrate the theme and layout into your project;
https://www.dropbox.com/s/s9cle2xqbwbu8 ... t.mp4?dl=0
https://www.dropbox.com/s/gat9a4ym373mi ... t.mp4?dl=0
https://www.dropbox.com/s/2p74g63wldbov ... t.mp4?dl=0

Regards,

Re: How to install icarus

Posted: 28 Dec 2018, 17:29
by fcastillo
Hi ! i try to use this line but it does not work

sass -w src/main/webapp/resources/ --sourcemap=none

just show more sass options. Could you please help me ??
Thanks.

Re: How to install icarus

Posted: 31 Dec 2018, 09:29
by mert.sincan
Which Sass version are you using?

Code: Select all

>  sass -v