2024-06-07 06:07:48 -05:00
2024-06-07 02:02:12 -05:00
2024-06-07 06:07:48 -05:00
2024-06-02 22:20:30 -05:00
2024-05-19 17:38:40 -05:00
2024-05-19 17:37:24 -05:00
2024-06-07 06:07:48 -05:00
2024-06-02 22:38:28 -05:00
2024-06-02 22:38:28 -05:00

ekzyis

This is the code for my blog at https://ekzy.is/.

Development

// enter dev environment
$ nix-shell

// run server
$ hugo server

// other tab: run tailwindcss in watch mode
$ tailwindcss -i assets/css/input.css -o static/tailwind.css --watch

// other tab: run htmx backend
$ cd server
$ go install github.com/a-h/templ/cmd/templ@latest
$ templ generate
$ go run .

Deployment

// deploy static HTML generated by hugo
$ ./deploy

// update server manually
$ ssh ekzy.is
$ tmux at -t <session>
$ <CTRL-C>
$ git pull
$ cd server && templ generate && go build -o server .
$ ./server
$ <CTRL-B+D>
Description
Languages
JavaScript 52.9%
HTML 40.2%
CSS 6.3%
Go 0.4%
Shell 0.2%