not my website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix routing

+10 -4
+6
Caddyfile
··· 1 + :80 { 2 + root * /srv 3 + encode gzip 4 + try_files {path} /index.html 5 + file_server 6 + }
+4 -3
Dockerfile
··· 1 - FROM pierrezemb/gostatic 2 - COPY . /srv/http/ 3 - CMD ["-port","8080","-https-promote", "-enable-logging"] 1 + FROM caddy:2.8-alpine 2 + COPY ./Caddyfile /etc/caddy/Caddyfile 3 + COPY ./index.html /srv/index.html 4 + COPY ./priv/ /srv/priv/
-1
src/website.gleam
··· 1 1 import birl.{type Day} 2 2 import gleam/int 3 3 import gleam/list 4 - import gleam/result 5 4 import gleam/string 6 5 import gleam/uri.{type Uri} 7 6 import lustre