Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.01 KB

README.md

File metadata and controls

51 lines (33 loc) · 1.01 KB

Kooby Vue Admin template

Admin Template with Vue 3 and Kooby (Using PrimeVue/SakaiVue)

Sperated projects

My similar projects

Getting started

1. Run database

docker compose -f compose/dev.compose.yaml up -d

3. Coding convention

I do not stick with any coding conventions. Take the best one you want to apply from Google/MS or even default of IntelliJ Idea

4. Notes

4.1 Response

Client and server should always produce and consume only type of object Respone:

  • Success
{
  "status": 200,
  "message": "Response message from backend",
  "payload": "Additional payload"
}
  • Error
{
  "status": 4xx,
  "message": "Response message from backend"
}