My personal website, hosted at implfuture.dev.
# local development
ibazel run //server --//:show_drafts
# build and deploy container image
bazel run -c opt //server:push-amd64 --stampIn order to push to ECR, make sure ~/.docker/config.json contains:
{
"credsStore": "ecr-login"
}To authenticate with podman, use
aws ecr get-login-password --region us-west-1 | podman login --username AWS --password-stdin 689191389309.dkr.ecr.us-west-1.amazonaws.comwith config
{
"auths": {},
"credsStore": "ecr-login",
"currentContext": "desktop-linux"
}