Skip to content

Commit

Permalink
tec: Ignore more folders on make tree
Browse files Browse the repository at this point in the history
  • Loading branch information
marienfressinaud committed Mar 25, 2021
1 parent 6e7e298 commit bb0b469
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ endif

.PHONY: tree
tree: ## Display the structure of the application
tree -I 'Minz|vendor|node_modules|coverage' --dirsfirst -CA
tree -I 'Minz|vendor|node_modules|coverage|cache|dev_assets|media' --dirsfirst -CA

.PHONY: help
help:
Expand Down
3 changes: 2 additions & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ $ make tree
```

It will show you all the folders and files of the project, except the
dependencies including the Minz library (which is under [the `lib/` folder](/lib/)).
dependencies like the Minz library (which is under [the `lib/` folder](/lib/)).
It will also hide cache files or downloaded medias.

Then, you should know that the entrypoint for the browser is the [`public/index.php`
file](/public/index.php). In fact, a correctly configured Web server must
Expand Down

0 comments on commit bb0b469

Please sign in to comment.