Can not find "Create Pull Request" in WebStorm - webstorm

I have tried to create pull request as written in WebStorm manual:
To create a pull request:
On the main menu, choose "VCS | Git | Create Pull Request". The Create Pull Request dialog box opens.
But it is not there.
What's going on?

If you defined a remote to GitHub. It will appear on that menu.

Make sure that the github plugin is installed and activated in Preferences (⌘ + ,) | Plugins | Installed (or install from marketplace tab). Also make sure there's an account in Version Control | Github.

Related

How to change from 10 to 100 (items per page) in publisher and devportal

This is second question today.
Does anyone know how to change the apis view number below from 10 to 100 by default?
(API Manager 4.0 using)
Thanks.
This is not configurable out of the box. In case of developer portal, you may need to do customization for ApiTableView.jsx or use option of changing it from the "Items per page" drop-down itself.
There is no config to change this value. You will need to do the customization in the source code files. For the publisher portal, you need to update the TableView.jsx file. To do this you need to copy the specific file to publisher/override/src directory, update it with changes and finally build the react app.
Step 1: Copy the TableView.jsx to <API-M_HOME>/repository/deployment/server/jaggeryapps/publisher/override/src/app/components/Apis/Listing/TableView directory(you will be manually create the directory path to match the source file location)
Step 2: Make the necessary changes
Step 3: Build the react app.
Navigate to <API-M_HOME>/repository/deployment/server/jaggeryapps and run the following commands to install the npm packages and bootstrap,
npm install
npm run bootstrap
Once the above is completed run the following command npm run build:prod from the devportal directory.
Please refer the official documentation Advanced UI Customization for more information.

Ho Do I Restart Sitecore Server From Code?

We have a requirement to install Sitecore packages programmatically from a custom admin page. The package installation is working but once the package is installed I wanted to restart the Sitecore server from code.
Sitecore.Install.Installer installer = new Sitecore.Install.Installer();
I tried with installer.ExecutePostStep but not sure what action I need to provide to this function.
If anyone has done it before Please help .
Basically I wanted to execute the functionality from code what the two below check boxes are doing when we do manual installation.
The easiest thing will be to restart the Sitecore's application pool by a Restart-Application PowerShell command.
Find more details here.

Can I run/debug files with babel-node in WebStorm?

I know there are Run/Debug configurations in WebStorm, but I don't know how to configure the context menu (when I right click in a file, it has Run... and Debug... in the menu, but I can't find where to configure this).
Run configurations are created via Run | Edit Configurations... : press +, choose Node.js, in created configuration specify babel-node as Node Interpreter:
But note that debugging doesn't work well when using it. I'd strongly recommend using -r #babel/register Node.js parameter instead - see comments in https://youtrack.jetbrains.com/issue/WEB-21949

How do I create a MeteorJS project in IntelliJ?

I would like to create a MeteorJS project in IntelliJ IDEA Ultimate 14.1, but it is not showing up in the "New Projects" template:
I have MeteorJS installed and running elsewhere, but I'm unable to find a way to create a MeteorJS project through IDEA.
It's definitely supported, so what am I doing wrong?
The Meteor plugin is not part of IDEA by default.
Here it says:
Note: The plugin is a part of WebStorm IDE and you don't need install it manually for WebStorm
If you are not using WebStorm you should install the plugin.
You can do this by doing the following:
Go to the Preferences menu (CMD , in OSX)
Click the "Plugins" section in the left pane
Click "Install Jetbrains plugin..." in the right panel in the lower
left
Search for "Meteor" in the search box
Click "Install plugin" in the right box

Cannot configure SVN on Qt

I have installed VisualSVN server and Win32Svn. Now I want to integrate it with Qt... I setup svn configuration in Tool -> Version control -> Subversion (see picture http://i.stack.imgur.com/BY3XG.png)
Now I want to create new project and add it to version control, but no option here :( (see picture http://i.stack.imgur.com/tKJNK.png)
I have absolutely no idea why... Can someone help me? What I did wrong or what I didn't?
If the repository already exists, try to use Import project -> Subversion checkout instead of New project.