0% found this document useful (0 votes)
15 views1 page

Path For Spring Boot & Angular

The document outlines the file and folder structure for a Spring Boot backend and an Angular frontend project located on the user's desktop. Key directories include 'src', 'target', and configuration files such as 'pom.xml' for Spring Boot, and 'angular.json' for Angular. Both projects contain service files, application components, and other essential resources for development.

Uploaded by

Arati Desai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views1 page

Path For Spring Boot & Angular

The document outlines the file and folder structure for a Spring Boot backend and an Angular frontend project located on the user's desktop. Key directories include 'src', 'target', and configuration files such as 'pom.xml' for Spring Boot, and 'angular.json' for Angular. Both projects contain service files, application components, and other essential resources for development.

Uploaded by

Arati Desai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Path for Spring Boot - Backend files

these are the folder / file paths:


1. c:\Users\desai\Desktop\iopanel\,mvn
2. c:\Users\desai\Desktop\iopanel\node_modules
3. c:\Users\desai\Desktop\iopanel\src
4. c:\Users\desai\Desktop\iopanel\target
5. c:\Users\desai\Desktop\iopanel\pom.xml
besides these, the iopanel has these files: .gitattributes, .gitignoire, HELP.md,
mvnw, mvnw.cmd, package.json, package-lock.json
6. c:\Users\desai\Desktop\iopanel\src\app
7. c:\Users\desai\Desktop\iopanel\src\main
8. c:\Users\desai\Desktop\iopanel\src\test\...(same as main, but with no files)
9. c:\Users\desai\Desktop\iopanel\src\index.html
10. c:\Users\desai\Desktop\iopanel\src\app\services
11. c:\Users\desai\Desktop\iopanel\src\app\services\api.service.ts
12. c:\Users\desai\Desktop\iopanel\src\app\app.component.ts
13. c:\Users\desai\Desktop\iopanel\src\app\app.module.ts
14. c:\Users\desai\Desktop\iopanel\src\main\java\com\plantworx\iopanel\
controller \testcontroller.java
15. c:\Users\desai\Desktop\iopanel\src\main\java\com\plantworx\iopanel\
CorsConfig.java
16. c:\Users\desai\Desktop\iopanel\src\main\java\com\plantworx\iopanel\
iopanelapplication.java
17. c:\Users\desai\Desktop\iopanel\src\main\resources\static\
18. c:\Users\desai\Desktop\iopanel\src\main\resources\templates\
19. c:\Users\desai\Desktop\iopanel\src\main\resources\application.properties

Path for Angular - Front end files

c:\Users\desai\Desktop\PlantWorx-UI/
└── src/
├── app/
│ ├── services/
│ │ └── api.service.ts
│ ├─ app.component.ts
│ |─ app.module.ts
| |── app.config.ts
| |── app.routes.ts
| |__ pages
| |__test-connection.ts
|___ index.html
|___ main.ts
|___ styles.css
|___ besides these, the iopanel has these files: .gitignoire, angular.json,
package.json, package-lock.json, README.md, tsconfig.app.json,
tsconfig.json

You might also like