A deployable markdown editor that connects with your self hosted files and lets you edit in a beautiful interface
at main 51 lines 2.0 kB view raw
1module github.com/yourusername/markedit 2 3go 1.24.1 4 5require ( 6 github.com/go-chi/chi/v5 v5.2.4 7 github.com/go-chi/cors v1.2.2 8 github.com/go-git/go-git/v5 v5.16.4 9 github.com/google/go-github/v58 v58.0.0 10 github.com/gorilla/sessions v1.4.0 11 github.com/joho/godotenv v1.5.1 12 github.com/markbates/goth v1.82.0 13 golang.org/x/oauth2 v0.27.0 14 golang.org/x/sync v0.19.0 15 gopkg.in/yaml.v3 v3.0.1 16 modernc.org/sqlite v1.44.3 17) 18 19require ( 20 dario.cat/mergo v1.0.0 // indirect 21 github.com/Microsoft/go-winio v0.6.2 // indirect 22 github.com/ProtonMail/go-crypto v1.1.6 // indirect 23 github.com/cloudflare/circl v1.6.1 // indirect 24 github.com/cyphar/filepath-securejoin v0.4.1 // indirect 25 github.com/dustin/go-humanize v1.0.1 // indirect 26 github.com/emirpasic/gods v1.18.1 // indirect 27 github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect 28 github.com/go-git/go-billy/v5 v5.6.2 // indirect 29 github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect 30 github.com/google/go-querystring v1.1.0 // indirect 31 github.com/google/uuid v1.6.0 // indirect 32 github.com/gorilla/mux v1.8.1 // indirect 33 github.com/gorilla/securecookie v1.1.2 // indirect 34 github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect 35 github.com/kevinburke/ssh_config v1.2.0 // indirect 36 github.com/mattn/go-isatty v0.0.20 // indirect 37 github.com/ncruces/go-strftime v1.0.0 // indirect 38 github.com/pjbgf/sha1cd v0.3.2 // indirect 39 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect 40 github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect 41 github.com/skeema/knownhosts v1.3.1 // indirect 42 github.com/xanzy/ssh-agent v0.3.3 // indirect 43 golang.org/x/crypto v0.37.0 // indirect 44 golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect 45 golang.org/x/net v0.39.0 // indirect 46 golang.org/x/sys v0.37.0 // indirect 47 gopkg.in/warnings.v0 v0.1.2 // indirect 48 modernc.org/libc v1.67.6 // indirect 49 modernc.org/mathutil v1.7.1 // indirect 50 modernc.org/memory v1.11.0 // indirect 51)