App Engine
Google App Engine is a service and a platform where you can develop and host web applications. You can learn more about Google App Engine at the official Google App Engine site.
With App Engine integration, you can run and debug Google App Engine applications. A new project already includes app.yaml with default configuration settings, and the GO file with the Hello World application. Customize the basic handler in the GO file or write your own.
The App Engine project has a predefined run/debug configuration. To add another configuration, select Go build in the Run/Debug configurations dialog. For more information about run/debug configurations, refer to Run/debug configurations.
Create a project with App Engine integration
Select
.Alternatively, click New Project in the Welcome to IntelliJ IDEA dialog.
In the New Project dialog, select App Engine from the list of available projects.
In the GOROOT field, specify the location of your Go installation. Usually, the location is defined automatically.
To change or install a new version of Go SDK, click the Add SDK button and select Local to choose the Go SDK version on your hard drive, or select Download to download Go SDK from the official repository.
(Optional) Toggle the Index entire GOPATH checkbox:
When cleared, project files and vendored packages are indexed. Packages from GOPATH are not indexed. Might improve the overall performance.
When selected, packages from GOPATH and project files are indexed.
Click Next, specify a project name and click Finish.
Working with App Engine applications
As you created an App Engine project, you can start debugging. The App Engine project has a predefined run/debug configuration and the default address (http://localhost:8080
).
Run an App Engine application
Click
.Click the Add button () and select Go Build.
From the Run kind list, select Directory.
Click OK.
Press Ctrl+Shift+F10. Alternatively, right-click any area of the opened file in the editor and select Run <configuration_name>.
In the Run tool window on the App Engine tab, click the server address.
Debug an App Engine application
Click in the gutter where you want to set a breakpoint. For more information about breakpoints, refer to Breakpoints.
Press Shift+F9. Alternatively, right-click any area of the opened file in the editor and select Debug <configuration_name>.
In the Debug tool window, refer to a list of frames that you can inspect. You can click the frame to view the current state of variables.
Installing Go SDK
Select a local copy of the Go SDK
Press Ctrl+Alt+S to open settings and then select
.Click the AddSDK({0}) button () and select Local.
In the file browser, navigate to the SDK version that is on your hard drive.
Click Open.
Download the Go SDK
Press Ctrl+Alt+S to open settings and then select
.Click the AddSDK({0}) button () and select Download.
From the Version list, select the SDK version.
In the Location field, specify the path for the SDK. To use a file browser, click the Browse icon ().
Click OK.