1.0.6 • Published 5 years ago

generator-loki v1.0.6

Weekly downloads
6
License
ISC
Repository
github
Last release
5 years ago

Loki - Microservice Generator

Build Status

is a Yeoman generator that creates a SpringBoot Microservice application with JWT / Keycloak SSO authentication.

Entity Generation

We can create an entity with different types of mappings (OneToMany, ManyToOne, OneToOne, ManyToMany). We can create an entities whith different databases like RDBMS, MongoDB, Casandra etc.

Table of Contents

Quick install guide

You need to have Node.js installed.

$ npm install -g yo
$ npm install -g generator-loki
$ yo loki

Running

Creating an Application

$ yo loki 

Creating Entities

$ yo loki:entity <metadata location>

Ex: $ yo loki:entity ../metadata/metadata.json

Sample Metadata for entity creation

{
  "entityDetails": [
    {
      "entityName": "User",
      "attributes": [
        {
          "name": "userName",
          "type": "String",
          "unique": true,
          "nullable": false,
          "minLength": 6,
          "maxLength": 30,
          "regex": {
            "pattern": "[A-Za-z0-9]+",
            "errorMessage": "Username should be alphanumeric"
          }
        },
        {
          "name": "password",
          "type": "String",
          "unique": false,
          "nullable": false
        },
        {
          "name": "email",
          "type": "String",
          "unique": true,
          "nullable": false
        },
        {
          "name": "age",
          "type": "Integer",
          "unique": false,
          "nullable": false
        }
      ],
      "mappings": [
        {
          "type": "OneToMany",
          "entity": "Role",
          "placeholder": "roles"
        }
      ]
    },
    {
      "entityName": "Role",
      "attributes": [
        {
          "name": "name",
          "type": "String",
          "unique": true,
          "nullable": false,
          "minLength": 4,
          "maxLength": 15,
          "regex": {
            "pattern": "[A-Za-z0-9]+",
            "errorMessage": "RoleName should be alphanumeric"
          }
        }
      ]
    }
  ]
}

Report Issue

Please feel free to report an issue

https://github.com/palmurugan/loki-spring-generator/issues

Author

PalMurugan C