celerio-angular-quickstart icon indicating copy to clipboard operation
celerio-angular-quickstart copied to clipboard

Install instructions with CORRECT versions

Open mosesgi opened this issue 6 years ago • 0 comments
trafficstars

I'm not member who contributed to this project. I'm just new to this celerio-angular-quickstart project and interested in it. When I tried to make the quickstart run successfully, many issues came out because of incorrect versions I'm using. This project is just out-of-date, and angular is involving too fast.

Here is the correct commands you should use. Please DO NOT install angular/cli before executing these commands, if you have, please uninstall it first npm uninstall -g @angular/cli

From a first console run:

git clone https://github.com/jaxio/celerio-angular-quickstart.git cd celerio-angular-quickstart/quickstart npm install -g @angular/[email protected] ng new web rm web/src/app/app.module.ts web/src/app/app.component.* web/src/styles.css mvn -Pdb,metadata,gen generate-sources mvn spring-boot:run

Then from a second console run (Reference to another thread https://github.com/jaxio/celerio-angular-quickstart/issues/72):

cd celerio-angular-quickstart/quickstart/web npm install [email protected] -f npm i @angular/[email protected] npm i @angular/[email protected] npm i [email protected] npm i font-awesome //fix for style.css (quickstart\web\src\styles.css) //remove '~' sign from line 4 @import '~https://fonts.googleapis.com/icon?family=Material+Icons'; ng serve --proxy-config proxy.conf.json -o

mosesgi avatar Apr 05 '19 09:04 mosesgi