Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 1.08 KB

README.md

File metadata and controls

17 lines (16 loc) · 1.08 KB

fullstack-todo-next-spring

A fullstack todo app made with nextjs for the frontend(and 1st api layer to backend) and java-spring for the backend(with mysql for persistence).

Project goal

Focus on the communication between the frontend and the backend, along with handling ui and db events.

Setup

  • (this assumes that you have the jdk installed, if not download it here: Oracle downloads)
  • (this assumes that you have node-npm installed, if not download it here: Node downloads)
  • (this assumes that you have mysql installed, if not download it here: Mysql downloads)
  • After installing mysql create an empty schema called fullstack_todo

Quick start

  1. To run the backend, inside the backend/fullstack-todo folder run `./mvnw spring-boot:run` in a command prompt.
  2. To run the frontend, inside the frontend folder run `npm install && npm run dev` in a command prompt.