├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── .travis.yml ├── README.md ├── backend ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── jdriven │ │ │ └── ng2boot │ │ │ └── Ng2bootApplication.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── com │ └── jdriven │ └── ng2boot │ └── Ng2bootApplicationTests.java ├── frontend ├── pom.xml └── src │ └── main │ └── frontend │ ├── .angular-cli.json │ ├── .editorconfig │ ├── README.md │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── package.json │ ├── protractor.conf.js │ ├── proxy.conf.json │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── mvnw ├── mvnw.cmd └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | jdk: 3 | - oraclejdk11 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/README.md -------------------------------------------------------------------------------- /backend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/backend/pom.xml -------------------------------------------------------------------------------- /backend/src/main/java/com/jdriven/ng2boot/Ng2bootApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/backend/src/main/java/com/jdriven/ng2boot/Ng2bootApplication.java -------------------------------------------------------------------------------- /backend/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/src/test/java/com/jdriven/ng2boot/Ng2bootApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/backend/src/test/java/com/jdriven/ng2boot/Ng2bootApplicationTests.java -------------------------------------------------------------------------------- /frontend/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/pom.xml -------------------------------------------------------------------------------- /frontend/src/main/frontend/.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/.angular-cli.json -------------------------------------------------------------------------------- /frontend/src/main/frontend/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/.editorconfig -------------------------------------------------------------------------------- /frontend/src/main/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/README.md -------------------------------------------------------------------------------- /frontend/src/main/frontend/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /frontend/src/main/frontend/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/e2e/app.po.ts -------------------------------------------------------------------------------- /frontend/src/main/frontend/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /frontend/src/main/frontend/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/karma.conf.js -------------------------------------------------------------------------------- /frontend/src/main/frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/package.json -------------------------------------------------------------------------------- /frontend/src/main/frontend/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/protractor.conf.js -------------------------------------------------------------------------------- /frontend/src/main/frontend/proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbruinink/ng2boot/HEAD/frontend/src/main/frontend/proxy.conf.json -------------------------------------------------------------------------------- /frontend/src/main/frontend/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/main/frontend/src/app/app.component.html: -------------------------------------------------------------------------------- 1 |