From edd774ab3cd727d1055f7312e95802a0800791ea Mon Sep 17 00:00:00 2001 From: Brent O'Connor Date: Fri, 4 Oct 2024 07:46:55 -0500 Subject: [PATCH] Fixed the quickstart script not replacing the project name in the compose.yml file. --- CHANGELOG.md | 7 +++++++ scripts/start_new_project | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 378d1f71..69ce30d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # CHANGELOG +## 2024-10-04 + +### Fixed + +* The quickstart script not replacing the project name in the compose.yml file. + + ## 2024-10-02 ### Changed diff --git a/scripts/start_new_project b/scripts/start_new_project index 5e0c9dd0..8f3b9673 100755 --- a/scripts/start_new_project +++ b/scripts/start_new_project @@ -92,7 +92,7 @@ INTERNAL_IPS=127.0.0.1,0.0.0.0 EOF just clean_extra_files -sed -i '' "s|image: epicserve/django-base-site|image: ${PROJECT_NAME_SLUG}|" docker-compose.yml +sed -i '' "s|image: epicserve/django-base-site|image: ${PROJECT_NAME_SLUG}|" compose.yml sed -i '' "s|django-base-site|${PROJECT_NAME_SLUG}|" justfile find ./public -name ".keep" | xargs rm -rf