From 925d1321e90a5e0de55df18cf386e7bf16fad769 Mon Sep 17 00:00:00 2001 From: Josh Thomas Date: Mon, 12 Aug 2024 11:52:47 -0500 Subject: [PATCH] add lock command to just refresh command (#298) --- CHANGELOG.md | 4 ++++ src/django_twc_project/Justfile.jinja | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9ee558..3bb6653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] +### Changed + +- `just refresh` command now calls `just lock`. + ### Fixed - Installation for development stages in `Dockerfile` now correctly using `pyproject.toml` with `dev` extras. diff --git a/src/django_twc_project/Justfile.jinja b/src/django_twc_project/Justfile.jinja index 8644bcb..11c8097 100644 --- a/src/django_twc_project/Justfile.jinja +++ b/src/django_twc_project/Justfile.jinja @@ -69,6 +69,7 @@ manage *COMMAND: # Refresh local development environment refresh: + @just lock @just docker stop @just bootstrap @just docker start