diff options
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ide/README.md | 12 | ||||
-rw-r--r-- | contrib/ide/vscode/launch.json | 31 | ||||
-rw-r--r-- | contrib/ide/vscode/tasks.json | 51 |
3 files changed, 94 insertions, 0 deletions
diff --git a/contrib/ide/README.md b/contrib/ide/README.md new file mode 100644 index 0000000000..80b6a8aad9 --- /dev/null +++ b/contrib/ide/README.md @@ -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. diff --git a/contrib/ide/vscode/launch.json b/contrib/ide/vscode/launch.json new file mode 100644 index 0000000000..af1594cd5d --- /dev/null +++ b/contrib/ide/vscode/launch.json @@ -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 + } + ] +} diff --git a/contrib/ide/vscode/tasks.json b/contrib/ide/vscode/tasks.json new file mode 100644 index 0000000000..8527d91c8f --- /dev/null +++ b/contrib/ide/vscode/tasks.json @@ -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"] + } + ] +} |