This project was generated with Angular CLI version 1.4.7 and has now been migrated to cli version 1.5.0.
- Node
- Run
yarn(preferred) ornpm installon this directory. - For extra credit
ng set --global packageManager=yarn
- Run
- A local CrafterCMS Instance
git clone https://github.com/craftercms/craftercmscd craftercmsand./gradlew -Penv=authoring init build deploy./gradlew -Penv=authoring stop update build deploy startto pull/update rebuild & restart./gradlew -Penv=authoring startto run
- An apache server (e.g. use MAMP)
- Configure your apache server
httpd.confwith the configuration below. Paste it right after theServerName locahost:XXXXentry on yourhttpd.conffile.ProxyRequests On ProxyVia On ProxyPreserveHost On ProxyPass /app http://localhost:4200/ ProxyPassReverse /app http://localhost:4200/ ProxyPass /guest http://localhost:3000/ ProxyPassReverse /guest http://localhost:3000/ ProxyPass / http://localhost:8080/ ProxyPassReverse / http://localhost:8080/ - FYI: On a mac/MAMP
- The
httpd.confis at/Applications/MAMP/conf/apache - Start apache with
/Applications/MAMP/Library/bin/apachectl start - Stop apache with
/Applications/MAMP/Library/bin/apachectl stop - Alternative to MAMP, on for mac see osxdaily.com/2012/09/02/start-apache-web-server-mac-os-x/
- The
- Configure your apache server
- Run your local Crafter
- Run your apache
- Run
yarn begin(ornpm run begin) - If your apache runs on port 8888 — like MAMP does, visit
localhost:8888/studioand login to studio - Visit
localhost:8888/appto see this Angular app. The app will automatically reload if you change any of the source files.
Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.
Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.
Run ng test to execute the unit tests via Karma.
Run ng e2e to execute the end-to-end tests via Protractor.
To get more help on the Angular CLI use ng help or go check out the Angular CLI README.
- Make a main repo and move the UI app into a sub package. Same for other sub packages (e.g. studio/core, studio/models, studio/services, etc) [WIP]
- API/HTTP error handling