Skip to content

Commit

Permalink
Fixed the quickstart script not replacing the project name in the com…
Browse files Browse the repository at this point in the history
…pose.yml file.
  • Loading branch information
epicserve committed Oct 4, 2024
1 parent feb9406 commit edd774a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion scripts/start_new_project
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit edd774a

Please sign in to comment.