Add side-bar in JHipster application - jhipster

I want to insert a sidebar into the body of the element body in a JHipster application.
Is there a command that can help me?

There is no module available for converting JHipster's nav bar into a sidebar. JHipster generates the code, but you will need to customize it yourself depending on your requirements.
You can see available JHipster commands by running jhipster --help, and the command's options by running jhipster service --help (example showing the service subgenerator options).
JHispter also offers modules, which extend JHipster's functionality with new commands. The full list can be viewed in the JHipster Module Marketplace. No module offers a sidebar option at this point in time.

Related

Jhipster control center not showing applications

I just created a fresh Jhipster 7.0.1 project and I'm trying to use the Jhipster Control center.
In the official page, it says:
As soon as an application registers on a server (consul or eureka), it
will become available in the list.
I just started all my microservices, they are all registered in the Jhipster registry but they are still not showing up on the Control center.
Am I forgetting to do something? I didn't do any extra configuration, just created the project and started.
To use JHipster Control Center, you must edit src/main/docker/jhipster-control-center.yml to configure it to use your chosen discovery service (in your case Eureka with the JHipster registry).
The instructions are in the jhipster-control-center.yml file comments, you got to set 2 environment variables in jhipster-control-center.yml and remove "127.0.0.1:" prefix from ports in the jhipster-registry.yml file.

How to aliasing Preact with Webpack?

Preact guide says
To alias any package in webpack, you need to add the resolve.alias section to your config. Depending on the configuration you're using, this section may already be present, but missing the aliases for Preact.
But using any of the official templates (default, typescript, material web components, etc...) doesn't generate any webpack.config.js file and preact has no eject command like react to access the full project configuration.
So, few things:
Firstly, Preact and Preact-CLI are two separate items.
You're quoting the section from our docs labeled "Integrating into an existing pipeline". This means adding Preact to an existing React application of yours, but, if you're using one of our templates, then this is a new project, not an existing one.
preact has no eject command like react to access the full project configuration.
There is no way to "eject" React. What you're referring to is the build tool called "Create React App".
We do allow for full configuration of the Webpack config with a preact.config.js. With this, you can edit any parts of the config that you'd like: change plugin options, add loaders, remove plugins, etc., without owning the configuration yourself. You can just comment out your changes in your config and you're back to the default config.
We believe CRA's "eject" is a poor API and therefore don't match it.

Does acumatica has console version of installer?

I want to create docker image of Acumatica. For this purpose I need console version of installer of Acumatica. Does Acumatica has console version of installer?
Not Sure this is exactly what you want, but there are instruction on how to use the Command Line tool to install and do maintenance of an Acumatica Website in the S100 course and on the Acumatica Help Website
It use the ac.exe with parameter do deploy an new installation.
The complete list of parameters can be found in both of the place mentioned before.

How to modify template in jHipster entity subgenerator for angular2?

I have got some work to modify default html generated by Jhipster for Angular2 more specifically,i want to modify styles for grid generated by Jhipster for Entity's.
I have gone through tutorial creating module in Jhispter documentation.
https://jhipster.github.io/modules/creating-a-module/
generator for creating subgenerator is also their can someone please give me pointers on this problem?
e.g
yo jhipster:entity Author
from above command jhipster creates all necessary files at server and client like JPA Entity,REST controller,Service, at client side it creates CRUD UI for Author entity using Angular2(i opted for anular2)
I want to modify client generation Code, i just want to modify HTML templates which gets generated by jhipster entity sub:generator
you need to run Yarn and start modifying your author.component.html
which will automatically refreshed in your Browser.
https://jhipster.github.io/development/
You could also consider using git prior to running the generator and then reverting the server side code once the generator has ran

Node Red Bluemix Application

Is there any way to provide front end to the NODE-RED App in BLUEMIX? I mean if there is a way to attach Angular.JS or PHP to the application.
You can embed a Node-RED app into an application based on AngularJS. Node-RED is based on Node.js and there is even official documentation on how to embed it. Take a look here: http://nodered.org/docs/embedding
You need to add the node-red package to the requirements and configure some settings. All is explained in the sample code provided in the above document.
I think the best way to use angularJs in combination with node-red is the template node from the dashboard ui:
npm package dashboard ui:
https://github.com/node-red/node-red-dashboard
detailed description of usage:
http://noderedguide.com/tag/template-node/

Resources