You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ TAGS="bindata sqlite sqlite_unlock_notify" make build
59
+
```
60
+
61
+
Note that it might be necessary, depending on your system's configuration, to prepend a `GO` specification (indicating the name of the executable, if different from just `go`).
62
+
63
+
```bash
64
+
$ GO=go1.25.2 TAGS="bindata sqlite sqlite_unlock_notify" make build
65
+
```
66
+
67
+
To run the project:
68
+
69
+
```bash
70
+
$ TAGS="sqlite sqlite_unlock_notify" make watch
71
+
```
72
+
73
+
Note that you need to build once in any case, before running continuously with watch.
74
+
75
+
Finally, visit http://localhost:3000 and you are ready to go to fork with Forkana!
76
+
5
77
-----------
6
78
7
79
# Gitea
@@ -49,11 +121,15 @@ If you have any suggestions or would like to contribute to it, you can visit the
49
121
50
122
From the root of the source tree, run:
51
123
52
-
TAGS="bindata" make build
124
+
```
125
+
TAGS="bindata" make build
126
+
```
53
127
54
128
or if SQLite support is required:
55
129
56
-
TAGS="bindata sqlite sqlite_unlock_notify" make build
130
+
```
131
+
TAGS="bindata sqlite sqlite_unlock_notify" make build
132
+
```
57
133
58
134
The `build` target is split into two sub-targets:
59
135
@@ -68,7 +144,9 @@ More info: https://docs.gitea.com/installation/install-from-source
68
144
69
145
After building, a binary file named `gitea` will be generated in the root of the source tree by default. To run it, use:
70
146
71
-
./gitea web
147
+
```
148
+
./gitea web
149
+
```
72
150
73
151
> [!NOTE]
74
152
> If you're interested in using our APIs, we have experimental support with [documentation](https://docs.gitea.com/api).
0 commit comments