Skip to content

Commit

Permalink
docs: Don't show bad examples in install.yaml (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay authored Jun 10, 2024
1 parent f5a170c commit 8d7dac3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ pre_install_actions:
# - |
# #ddev-nodisplay
#ddev-description:Check architecture type for incompatible arm64 type
# if [ "$(arch)" = "arm64" -o "$(arch)" = "aarch64" ]; then
# echo "This package does not work on arm64 machines";
# if [ "$(uname -m)" = "arm64" -o "$(uname -m)" = "aarch64" ]; then
# echo "This package does not work on arm64 (Apple Silicon) machines";
# exit 1;
#fi

Expand Down Expand Up @@ -57,16 +57,20 @@ pre_install_actions:
# Each file should contain #ddev-generated so it can be replaced by a later `ddev get`
# if it hasn't been modified by the user.
# DDEV environment variables can be interpolated into these filenames
# If you use directories, they must be directories that are managed
# by this add-on, or removal could remove things that are not owned by it
project_files:
- docker-compose.addon-template.yaml
# - extra_files/
# - some-directory/file1.txt
# - some-directory/file2.txt
# - extra_files_dir_created_by_this_template/
# - somefile.sh

# List of files and directories that are copied into the global .ddev directory
# DDEV environment variables can be interpolated into these filenames
global_files:
# - commands
# - homeadditions
# - commands/web/add-on-command
# - homeadditions/some-file.txt

# List of add-on names that this add-on depends on
dependencies:
Expand Down

0 comments on commit 8d7dac3

Please sign in to comment.