Skip to content

An admin template with Kooby and Vue 3 (Using PrimeVue/SakaiVue)

License

Notifications You must be signed in to change notification settings

jonaskahn/kooby-admin-vue-template

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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"
}