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