2022-09-29 21:49:41 +00:00
|
|
|
# https://github.com/casey/just
|
|
|
|
|
|
|
|
default:
|
|
|
|
just --list
|
|
|
|
|
2023-04-24 19:46:10 +00:00
|
|
|
start:
|
|
|
|
nix develop --command yarn astro dev --open
|
|
|
|
|
2023-06-05 23:13:20 +00:00
|
|
|
create-daily date title:
|
2022-09-29 21:49:41 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-09-11 19:59:07 +00:00
|
|
|
nvim $(./tools/scripts/create-daily.sh {{ date }} "{{ title }}")
|
2022-09-29 21:49:41 +00:00
|
|
|
|
2022-09-29 22:29:58 +00:00
|
|
|
deploy sha:
|
2023-07-18 13:01:48 +00:00
|
|
|
rsync -r -avhP --delete dist/* opdavies@104.248.165.137:/srv/oliverdavies.uk
|
2023-04-19 17:00:00 +00:00
|
|
|
|
|
|
|
format:
|
|
|
|
yarn prettier --write src/**/*.{astro,mdx}
|
|
|
|
yarn rustywind src
|