Skip to content

Commit

Permalink
Merge pull request #143 from collective/optional-docker
Browse files Browse the repository at this point in the history
Make it possible to run the template without docker
  • Loading branch information
davisagli authored Apr 16, 2024
2 parents ab3150a + 4970b24 commit 549bf4e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Welcome to **Cookiecutter Plone Starter**! Your one-stop solution to kickstart [

- **pipx**: A handy tool for installing and running Python applications.
- **NodeJS & Yarn**: Essential for managing and running JavaScript packages.
- **Docker**: For containerization and easy deployment.
- **Docker**: For containerization and easy deployment. (Optional)

### Installation Guide 🛠️

Expand Down
Empty file added hooks/__init__.py
Empty file.
5 changes: 2 additions & 3 deletions hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,8 @@ def prepare_backend():
for step in steps:
msg, command, shell, cwd = step
print(f" - {msg}")
result = run_cmd(command, shell=shell, cwd=cwd)
if not result:
sys.exit(1)
run_cmd(command, shell=shell, cwd=cwd)
# Note: we intentionally don't exit if formatting fails.


volto_version = "{{ cookiecutter.volto_version }}"
Expand Down

0 comments on commit 549bf4e

Please sign in to comment.