Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.js
Picture of app

Note: 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.