Skip to content

Commit ba4e4d9

Browse files
committed
feat: update codebase
1 parent a246302 commit ba4e4d9

104 files changed

Lines changed: 6885 additions & 2803 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.air.toml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
root = "."
2+
testdata_dir = "testdata"
3+
tmp_dir = "tmp"
4+
5+
[build]
6+
args_bin = ["web"]
7+
bin = "./tmp/main"
8+
cmd = "go build -o ./tmp/main ./cmd/seqctl"
9+
delay = 1000
10+
exclude_dir = ["assets", "tmp", "vendor", "testdata", "web", "node_modules", "dist", ".git"]
11+
exclude_file = []
12+
exclude_regex = ["_test.go"]
13+
exclude_unchanged = false
14+
follow_symlink = false
15+
full_bin = ""
16+
include_dir = []
17+
include_ext = ["go", "tpl", "tmpl", "html"]
18+
include_file = []
19+
kill_delay = "0s"
20+
log = "build-errors.log"
21+
poll = false
22+
poll_interval = 0
23+
post_cmd = []
24+
pre_cmd = []
25+
rerun = false
26+
rerun_delay = 500
27+
send_interrupt = false
28+
stop_on_error = false
29+
30+
[color]
31+
app = ""
32+
build = "yellow"
33+
main = "magenta"
34+
runner = "green"
35+
watcher = "cyan"
36+
37+
[log]
38+
main_only = false
39+
time = false
40+
41+
[misc]
42+
clean_on_exit = true
43+
44+
[proxy]
45+
app_port = 0
46+
enabled = false
47+
proxy_port = 0
48+
49+
[screen]
50+
clear_on_rebuild = false
51+
keep_scroll = true

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
bin/
33
python/
44
nix/
5+
tmp/

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ jobs:
5959
env:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
62-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
62+
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ __pycache__/
1515
# claude
1616
.claude/
1717
CLAUDE.md
18+
19+
# other
20+
tmp/

.goreleaser.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,7 @@ builds:
3333
archives:
3434
- id: default
3535
name_template: >-
36-
{{ .ProjectName }}_
37-
{{- .Version }}_
38-
{{- title .Os }}_
39-
{{- if eq .Arch "amd64" }}x86_64
40-
{{- else if eq .Arch "386" }}i386
41-
{{- else }}{{ .Arch }}{{ end }}
42-
{{- if .Arm }}v{{ .Arm }}{{ end }}
36+
{{ .ProjectName }}_ {{- .Version }}_ {{- title .Os }}_ {{- if eq .Arch "amd64" }}x86_64 {{- else if eq .Arch "386" }}i386 {{- else }}{{ .Arch }}{{ end }} {{- if .Arm }}v{{ .Arm }}{{ end }}
4337
format_overrides:
4438
- goos: windows
4539
format: zip

0 commit comments

Comments
 (0)