Skip to content
This repository has been archived by the owner on Jan 1, 2020. It is now read-only.

Commit

Permalink
Add vendors/ directory for third-party modules
Browse files Browse the repository at this point in the history
- The odd-looking .gitignore is so that the README file is included in the
repository, but if the user installs some third part modules, they won't
accidentally be added to the skeleton git repository. We do the same thing in
the modules/ directory.
- Added readme explaining that vendors/ is for third-party modules
  • Loading branch information
EvanDotPro committed Nov 11, 2011
1 parent bb0d060 commit 3c3b45b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions configs/application.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
return array(
'module_paths' => array(
realpath(__DIR__ . '/../modules'),
realpath(__DIR__ . '/../vendors'),
),
'modules' => array(
'Application',
Expand Down
3 changes: 3 additions & 0 deletions vendors/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/*
!README.md
!.gitignore
1 change: 1 addition & 0 deletions vendors/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This `vendors/` directory is where third-party modules should be installed.

0 comments on commit 3c3b45b

Please sign in to comment.