my page ollie.earth
0
fork

Configure Feed

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

at main 22 lines 289 B view raw
1default: 2 @just --list 3 4 5# Build 6build: 7 gleam run 8 9dev: 10 gleam dev 11 12# Deploy to my server 13deploy: build 14 #!/usr/bin/env zsh 15 ssh deploy-page@gitlab " 16 rm -r /srv/page/* 17 " 18 19 # copy current version to /srv/page/ 20 scp -r ./dist/* deploy-page@gitlab:/srv/page 21 22