Sort listings table by most recent date; add SSH deploy fix to TODO
Some checks failed
Deploy stAndrews / deploy (push) Failing after 4s

This commit is contained in:
2026-04-16 06:34:56 -04:00
parent bf5f736cf3
commit 5fbff45a2e
2 changed files with 2 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ create_server <- function(input, output, session) {
# Load data # Load data
owners <- readRDS(app_config$data_paths$owners) owners <- readRDS(app_config$data_paths$owners)
listings <- readRDS(app_config$data_paths$listings) |> listings <- readRDS(app_config$data_paths$listings) |>
arrange(price_per_sqft) |> arrange(desc(listed_date)) |>
mutate( mutate(
price_fmt = scales::dollar(price), price_fmt = scales::dollar(price),
ppsf_fmt = scales::dollar(price_per_sqft) ppsf_fmt = scales::dollar(price_per_sqft)

View File

@@ -37,6 +37,7 @@
## Deployment ## Deployment
- [ ] Fix SSH deploy workflow — failing since server outage; manual deploy required as workaround
- [x] Create Dockerfile, docker-compose.yml, .gitea/workflows/deploy.yaml - [x] Create Dockerfile, docker-compose.yml, .gitea/workflows/deploy.yaml
- [x] Push to Gitea — act_runner deploys on push to main - [x] Push to Gitea — act_runner deploys on push to main
- [x] App live at apps.robwiederstein.org/stAndrews/ - [x] App live at apps.robwiederstein.org/stAndrews/