mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 13:23:14 +01:00
* Remove documents table (WIP) * Further cleanup of documents table * This should clean up the errors, but actual attachment handling still needs added. * Full generation to update the JS side of things too * Further fixes * Fix cyclic dependency issue * In theory the API side works now * Fix go linting issues * Fix frontend issues * Way closer, but has a foreign key constrant issue * UI actually works now * Fix deduplication feature not working right * Upgrade to `golangci-lint` v2 file * Add ability to set primary during attachment creation * Update swagger with new primary attachment during creation stuff * Files are actually saved now, but there's still a bug * Fix critical issue whith how deletions were working * Fix the byte copy issue * Hopefully everything is fixed now * Fix golangci-lint config and lint files * Fix lint issue * Fix a few more tests * Fix lint issues again * More minor test fixes * Update backend/internal/core/services/service_items_attachments.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix migration (I think) * Fixed postgres migration * Change some migration options to work better * Some more little things that I tried * Fix merge go.mod * Fix migrations * Little lint thing * Fix AttachmentsList.vue with updated API --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
95 lines
3.8 KiB
Modula-2
95 lines
3.8 KiB
Modula-2
module github.com/sysadminsmedia/homebox/backend
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
entgo.io/ent v0.14.4
|
|
github.com/ardanlabs/conf/v3 v3.7.2
|
|
github.com/containrrr/shoutrrr v0.8.0
|
|
github.com/go-chi/chi/v5 v5.2.1
|
|
github.com/go-playground/validator/v10 v10.26.0
|
|
github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/schema v1.4.1
|
|
github.com/hay-kot/httpkit v0.0.11
|
|
github.com/lib/pq v1.10.9
|
|
github.com/mattn/go-sqlite3 v1.14.28
|
|
github.com/olahol/melody v1.2.1
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/pressly/goose/v3 v3.24.2
|
|
github.com/rs/zerolog v1.34.0
|
|
github.com/shirou/gopsutil/v4 v4.25.3
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/swaggo/http-swagger/v2 v2.0.2
|
|
github.com/swaggo/swag v1.16.4
|
|
github.com/yeqown/go-qrcode/v2 v2.2.5
|
|
github.com/yeqown/go-qrcode/writer/standard v1.2.5
|
|
github.com/zeebo/blake3 v0.2.4
|
|
golang.org/x/crypto v0.37.0
|
|
modernc.org/sqlite v1.37.0
|
|
)
|
|
|
|
require (
|
|
ariga.io/atlas v0.32.0 // indirect
|
|
github.com/ebitengine/purego v0.8.2 // indirect
|
|
github.com/go-ole/go-ole v1.3.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.12 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20250317134145-8bc96cf8fc35 // indirect
|
|
github.com/mfridman/interpolate v0.0.2 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
|
github.com/sethvargo/go-retry v0.3.0 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.15 // indirect
|
|
github.com/tklauser/numcpus v0.10.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
|
github.com/bmatcuk/doublestar v1.3.4 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/fatih/color v1.18.0 // indirect
|
|
github.com/fogleman/gg v1.3.0 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
|
|
github.com/go-openapi/inflect v0.21.2 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.1 // indirect
|
|
github.com/go-openapi/jsonreference v0.21.0 // indirect
|
|
github.com/go-openapi/spec v0.21.0 // indirect
|
|
github.com/go-openapi/swag v0.23.1 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/gorilla/websocket v1.5.3 // indirect
|
|
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mailru/easyjson v0.9.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/ncruces/go-strftime v0.1.9 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/swaggo/files/v2 v2.0.2 // indirect
|
|
github.com/yeqown/reedsolomon v1.0.0 // indirect
|
|
github.com/zclconf/go-cty v1.16.2 // indirect
|
|
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect
|
|
golang.org/x/image v0.26.0
|
|
golang.org/x/mod v0.24.0 // indirect
|
|
golang.org/x/net v0.39.0 // indirect
|
|
golang.org/x/sync v0.13.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
golang.org/x/tools v0.32.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
modernc.org/libc v1.63.0 // indirect
|
|
modernc.org/mathutil v1.7.1 // indirect
|
|
modernc.org/memory v1.10.0 // indirect
|
|
)
|