Skip to content

Commit

Permalink
Merge pull request #141 from evan-buss/feat/grid-improvements
Browse files Browse the repository at this point in the history
feat: grid improvements
  • Loading branch information
evan-buss authored Jun 20, 2023
2 parents 70c909e + 910c97d commit 0c66f2e
Show file tree
Hide file tree
Showing 21 changed files with 4,972 additions and 3,794 deletions.
6 changes: 3 additions & 3 deletions Taskfile.Development.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ tasks:

mock:
desc: Start Mock Server for Development
dir: cmd/mock_server
dir: cmd/mock
cmds:
- go run .

Expand All @@ -36,14 +36,14 @@ tasks:
dir: cmd/openbooks
cmds:
- go build
- ./openbooks cli --tls=false --server localhost:6667
- ./openbooks cli --tls=false --server localhost:6667 --name "dev-user"

server:
desc: Run OpenBooks in Server Mode.
dir: cmd/openbooks
cmds:
- go build
- ./openbooks server --tls=false --server localhost:6667
- ./openbooks server --tls=false --server localhost:6667 --name "dev-user"

client:
desc: Run OpenBooks React Client Application in Development Mode.
Expand Down
10 changes: 1 addition & 9 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,7 @@ require (

require (
github.com/davecgh/go-spew v1.1.1
github.com/go-playground/validator/v10 v10.11.1
github.com/icholy/digest v0.1.22
github.com/inkeliz/gowebview v1.0.1
github.com/rs/zerolog v1.28.0
github.com/testcontainers/testcontainers-go v0.17.0
gopkg.in/irc.v4 v4.0.0
)
Expand All @@ -46,18 +43,14 @@ require (
github.com/docker/docker v20.10.20+incompatible // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/inkeliz/w32 v1.0.2 // indirect
github.com/klauspost/compress v1.15.9 // indirect
github.com/klauspost/pgzip v1.2.5 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
github.com/moby/patternmatcher v0.5.0 // indirect
Expand All @@ -76,7 +69,6 @@ require (
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 // indirect
golang.org/x/text v0.5.0 // indirect
golang.org/x/time v0.0.0-20220722155302-e5dcc9cfc0b9 // indirect
google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect
google.golang.org/grpc v1.47.0 // indirect
Expand Down
45 changes: 0 additions & 45 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 0c66f2e

Please sign in to comment.