forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic VSCode configuration for building and debugging (go-gitea#2483)
* Basic VSCode configuration for building and debugging * Fix building and debugging in Windows * Move to contrib folder and add instructions
- Loading branch information
Showing
6 changed files
with
105 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ It assumes you have followed the | |
Sensitive security-related issues should be reported to | ||
[[email protected]](mailto:[email protected]). | ||
|
||
For configuring IDE or code editor to develop Gitea see [IDE and code editor configuration](contrib/ide/) | ||
|
||
## Bug reports | ||
|
||
Please search the issues on the issue tracker with a variety of keywords | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# IDE and code editor configuration | ||
|
||
## Table of Contents | ||
- [IDE and code editor configuration](#ide-and-code-editor-configuration) | ||
- [Microsoft Visual Studio Code](#microsoft-visual-studio-code) | ||
|
||
## Microsoft Visual Studio Code | ||
Download Microsoft Visual Studio Code at https://code.visualstudio.com/ and follow instructions at https://code.visualstudio.com/docs/languages/go to setup Go extension for it. | ||
|
||
Create new direcotry `.vscode` in Gitea root folder and copy contents of folder [contrib/ide/vscode](vscode/) to it. You can now use `Ctrl`+`Shift`+`B` to build gitea executable and `F5` to run it in debug mode. | ||
|
||
Supported on Debian, Ubuntu, Red Hat, Fedora, SUSE Linux, MacOS and Microsoft Windows. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "debug", | ||
"buildFlags": "", | ||
"port": 2345, | ||
"host": "127.0.0.1", | ||
"program": "${workspaceRoot}/main.go", | ||
"env": {}, | ||
"args": ["web"], | ||
"showLog": true | ||
}, | ||
{ | ||
"name": "Launch (with SQLite3)", | ||
"type": "go", | ||
"request": "launch", | ||
"mode": "debug", | ||
"buildFlags": "-tags=\"sqlite\"", | ||
"port": 2345, | ||
"host": "127.0.0.1", | ||
"program": "${workspaceRoot}/main.go", | ||
"env": {}, | ||
"args": ["web"], | ||
"showLog": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"taskName": "Build", | ||
"type": "shell", | ||
"command": "go", | ||
"group": "build", | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "shared" | ||
}, | ||
"args": ["build"], | ||
"linux": { | ||
"args": [ "-o", "gitea", "${workspaceRoot}/main.go" ] | ||
}, | ||
"osx": { | ||
"args": [ "-o", "gitea", "${workspaceRoot}/main.go" ] | ||
}, | ||
"windows": { | ||
"args": [ "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""] | ||
}, | ||
"problemMatcher": ["$go"] | ||
}, | ||
{ | ||
"taskName": "Build (with SQLite3)", | ||
"type": "shell", | ||
"command": "go", | ||
"group": "build", | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"focus": false, | ||
"panel": "shared" | ||
}, | ||
"args": ["build", "-tags=\"sqlite\""], | ||
"linux": { | ||
"args": ["-o", "gitea", "${workspaceRoot}/main.go"] | ||
}, | ||
"osx": { | ||
"args": ["-o", "gitea", "${workspaceRoot}/main.go"] | ||
}, | ||
"windows": { | ||
"args": ["-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""] | ||
}, | ||
"problemMatcher": ["$go"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters