Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/brantac/customer-registration-app
Customer registration app with Java and Vue.js
https://github.com/brantac/customer-registration-app
java spring-boot vuejs
Last synced: 2 days ago
JSON representation
Customer registration app with Java and Vue.js
- Host: GitHub
- URL: https://github.com/brantac/customer-registration-app
- Owner: brantac
- Created: 2024-09-18T18:37:05.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-09T21:01:21.000Z (2 months ago)
- Last Synced: 2024-11-09T22:17:02.377Z (2 months ago)
- Topics: java, spring-boot, vuejs
- Language: TypeScript
- Homepage:
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Customer registration app
This is a CRUD project that I used to improve my skils with Java and Spring Boot. There's two folders inside, the [backend](/backend/) and the [frontend](/frontend/).#### Back-end
- Spring Boot
- Maven#### Front-end
- Vue.js 3
- Vite
- Zod#### Requirements (*Minimum*)
- Java 21
- Node.js 20### Features
- ✔ Create customer
- ✔ Delete customer
- ✔ Update customer
- ✔ View customer
- ✔ Form validation
- [✔] Front-end testing## How to start
### 1. Clone the repository
```
git clone https://github.com/brantac/customer-registration-app.git
cd customer-registration-app
```### 2. Install npm dependencies for the front-end
```
cd .\frontend\
npm install
```### 3. Run the front-end
Run this command and click on the url that will show in the console to open the page.
```
npm run dev
```### 4. Run the back-end
Open a new command line window and go to the back-end folder. Inside of it there's a Maven wrapper that will run Spring Boot.
```
cd .\backend\
```Run:
```
# If you're on Windows
.\mvnw.cmd spring-boot:run# If you're on Linux
./mvnw spring-boot:run
```