Skip to content

Commit

Permalink
Merge pull request #58 from koddr/main
Browse files Browse the repository at this point in the history
Fix Dockerfile; Update dependencies
  • Loading branch information
koddr committed Mar 4, 2024
2 parents 746ca6b + dfad05e commit e2c7f5d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ A next-generation CLI tool that makes it easy to create amazing web applications
- Enables you to **start a new project faster** with [Go][go_url], [htmx][htmx_url], [hyperscript][hyperscript_url] or [Alpine.js][alpinejs_url] libraries;
- Supports the built-in [net/http][go_net_http_url] package and the most popular **Go web frameworks and routers** out of the box, such as [Fiber][fiber_url], [Gin][gin_url], [Echo][echo_url], [Chi][chi_url] and [HttpRouter][httprouter_url];
- Supports the most popular **CSS frameworks** out of the box, such as [Tailwind CSS][tailwindcss_url], [daisyUI][daisyui_url], [Flowbite][flowbite_url], [UnoCSS][unocss_url], [Bootstrap][bootstrap_url] and [Bulma][bulma_url];
- Supports a new **JavaScript runtime environment** called [Bun][bun_url] for a frontend;
- Supports a new **JavaScript runtime environment** called [Bun][bun_url] for the frontend;
- Supports a way to **build HTML with Go** using the [Templ][templ_url] package;
- Supports a **live-reload** mode for your Go code and frontend files using [Air][air_url] tool;
- Ready to install as **PWA** (Progressive Web App) in your browser or mobile device;
- Ready-to-use Dockerfile and Docker Compose files to deploy your application in **any environment**;
- Ready-to-install as **PWA** (Progressive Web App) in your browser or mobile device;
- Has a library of **user-friendly** [helpers][gowebly_helpers_url] for your Go code.

## 鈿★笍 Quick start
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ go 1.22.0

require (
github.com/charmbracelet/huh v0.3.0
github.com/charmbracelet/huh/spinner v0.0.0-20240229015932-3b6ef873f164
github.com/charmbracelet/huh/spinner v0.0.0-20240229215634-51377e67546c
github.com/charmbracelet/lipgloss v0.9.1
github.com/google/wire v0.6.0
github.com/stretchr/testify v1.8.4
github.com/stretchr/testify v1.9.0
)

require (
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ github.com/charmbracelet/bubbletea v0.25.0 h1:bAfwk7jRz7FKFl9RzlIULPkStffg5k6pNt
github.com/charmbracelet/bubbletea v0.25.0/go.mod h1:EN3QDR1T5ZdWmdfDzYcqOCAps45+QIJbLOBxmVNWNNg=
github.com/charmbracelet/huh v0.3.0 h1:CxPplWkgW2yUTDDG0Z4S5HH8SJOosWHd4LxCvi0XsKE=
github.com/charmbracelet/huh v0.3.0/go.mod h1:fujUdKX8tC45CCSaRQdw789O6uaCRwx8l2NDyKfC4jA=
github.com/charmbracelet/huh/spinner v0.0.0-20240229015932-3b6ef873f164 h1:Z/oFjdYETlSZC/Mp4ISlwobAPeXLpek3UNILyr4Rnyc=
github.com/charmbracelet/huh/spinner v0.0.0-20240229015932-3b6ef873f164/go.mod h1:nrBG0YEHaxdbqHXW1xvG1hPqkuac9Eg7RTMvogiXuz0=
github.com/charmbracelet/huh/spinner v0.0.0-20240229215634-51377e67546c h1:KW4RXdyw6V/r6uDWx9GZ0PFOaKTchjnQPU91u2tgMmQ=
github.com/charmbracelet/huh/spinner v0.0.0-20240229215634-51377e67546c/go.mod h1:nrBG0YEHaxdbqHXW1xvG1hPqkuac9Eg7RTMvogiXuz0=
github.com/charmbracelet/lipgloss v0.9.1 h1:PNyd3jvaJbg4jRHKWXnCj1akQm4rh8dbEzN1p/u1KWg=
github.com/charmbracelet/lipgloss v0.9.1/go.mod h1:1mPmG4cxScwUQALAAnacHaigiiHB9Pmr+v1VEawJl6I=
github.com/containerd/console v1.0.4 h1:F2g4+oChYvBTsASRTz8NP6iIAi97J3TtSAsLbIFn4ro=
Expand Down Expand Up @@ -45,8 +45,8 @@ github.com/rivo/uniseg v0.1.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJ
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
Expand Down
2 changes: 1 addition & 1 deletion internal/attachments/templates/deploy/Dockerfile.gotmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Auto-generated Dockerfile file.
# See https://gowebly.org for more information.

FROM golang:1.21-alpine AS builder
FROM golang:1.22-alpine AS builder

# Move to working directory (/build).
WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion internal/variables/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package variables

// GoweblyVersion represents the current Gowebly CLI version.
var GoweblyVersion string = "v2.3.1"
var GoweblyVersion string = "v2.3.2"

0 comments on commit e2c7f5d

Please sign in to comment.