summaryrefslogtreecommitdiffstats
path: root/contrib/ide
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /contrib/ide
parentInitial commit. (diff)
downloadforgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.tar.xz
forgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'contrib/ide')
-rw-r--r--contrib/ide/README.md12
-rw-r--r--contrib/ide/vscode/launch.json31
-rw-r--r--contrib/ide/vscode/settings.json4
-rw-r--r--contrib/ide/vscode/tasks.json49
4 files changed, 96 insertions, 0 deletions
diff --git a/contrib/ide/README.md b/contrib/ide/README.md
new file mode 100644
index 0000000..a9abfa3
--- /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 directory `.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 0000000..b80b826
--- /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": "",
+ "program": "${workspaceRoot}/main.go",
+ "env": {
+ "GITEA_WORK_DIR": "${workspaceRoot}",
+ },
+ "args": ["web"],
+ "showLog": true
+ },
+ {
+ "name": "Launch (with SQLite3)",
+ "type": "go",
+ "request": "launch",
+ "mode": "debug",
+ "buildFlags": "-tags='sqlite sqlite_unlock_notify'",
+ "program": "${workspaceRoot}/main.go",
+ "env": {
+ "GITEA_WORK_DIR": "${workspaceRoot}",
+ },
+ "args": ["web"],
+ "showLog": true
+ }
+ ]
+}
diff --git a/contrib/ide/vscode/settings.json b/contrib/ide/vscode/settings.json
new file mode 100644
index 0000000..2ec666f
--- /dev/null
+++ b/contrib/ide/vscode/settings.json
@@ -0,0 +1,4 @@
+{
+ "go.buildTags": "sqlite,sqlite_unlock_notify",
+ "go.testFlags": ["-v"]
+}
diff --git a/contrib/ide/vscode/tasks.json b/contrib/ide/vscode/tasks.json
new file mode 100644
index 0000000..e35ae30
--- /dev/null
+++ b/contrib/ide/vscode/tasks.json
@@ -0,0 +1,49 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Build",
+ "type": "shell",
+ "command": "go",
+ "group": "build",
+ "presentation": {
+ "echo": true,
+ "reveal": "always",
+ "focus": false,
+ "panel": "shared"
+ },
+ "linux": {
+ "args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
+ },
+ "osx": {
+ "args": ["build", "-o", "gitea", "${workspaceRoot}/main.go" ]
+ },
+ "windows": {
+ "args": ["build", "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
+ },
+ "problemMatcher": ["$go"]
+ },
+ {
+ "label": "Build (with SQLite3)",
+ "type": "shell",
+ "command": "go",
+ "group": "build",
+ "presentation": {
+ "echo": true,
+ "reveal": "always",
+ "focus": false,
+ "panel": "shared"
+ },
+ "linux": {
+ "args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea", "${workspaceRoot}/main.go"]
+ },
+ "osx": {
+ "args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea", "${workspaceRoot}/main.go"]
+ },
+ "windows": {
+ "args": ["build", "-tags=\"sqlite sqlite_unlock_notify\"", "-o", "gitea.exe", "\"${workspaceRoot}\\main.go\""]
+ },
+ "problemMatcher": ["$go"]
+ }
+ ]
+}