Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bwhtdev/crud-app-v1
CRUD practice app: Spring Boot / MySQL / React.js
https://github.com/bwhtdev/crud-app-v1
Last synced: about 1 month ago
JSON representation
CRUD practice app: Spring Boot / MySQL / React.js
- Host: GitHub
- URL: https://github.com/bwhtdev/crud-app-v1
- Owner: bwhtdev
- Created: 2022-07-14T04:55:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-16T04:16:54.000Z (over 2 years ago)
- Last Synced: 2024-10-30T01:03:58.220Z (about 2 months ago)
- Language: JavaScript
- Size: 367 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD-app-v1
## This is a fullstack CRUD (create, read, update, delete) app using Spring Boot, MySQL, and React.jsNote: This app does not contain any styling other than the default boilerplate given by React.
###### Requirements:
- Java SDK 18
- MySQL community server
- NPM (Node package manager)
- React.js
- Vscode IDE (or an IDE of your choice)
- The following vscode extensions:
- Debugger for Java
- Spring Boot extension pack
- Extension pack for Java
- ES7+ React/Redux/React-Native snippets
- Thunder Client (for testing REST API)###### Installation:
To initialize MySQL database type the following in the terminal:
`sudo mysql --password`
Enter password then enter:
`mysql> create database crudappv1db;`To start up the server hit the run button. This will start up Spring Boot.
To start up the front end navigate to crud-front-end-v1 using the `cd crud-front-end-v1` command. Then run `npm start` to start the app.
###### Usage:
Server is running on port 8085.
App is running on port 3030.