We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3fbafe commit 0fa4df7Copy full SHA for 0fa4df7
src/gitly.v
@@ -12,7 +12,6 @@ import config
12
13
const (
14
commits_per_page = 35
15
- http_port = os.getenv_opt('GITLY_PORT') or { '8080' }.int()
16
expire_length = 200
17
posts_per_day = 5
18
max_username_len = 40
src/main.v
@@ -1,6 +1,8 @@
1
import os
2
import vweb
3
4
+const http_port = os.getenv_opt('GITLY_PORT') or { '8080' }.int()
5
+
6
fn main() {
7
if os.args.contains('ci_run') {
8
return
0 commit comments