mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-08 06:56:33 +02:00
Suggesting the use of local gems, as they're actually cleanable
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1,3 +1,5 @@
|
|||||||
/_site/
|
/_site/
|
||||||
*.DS_Store
|
*.DS_Store
|
||||||
node_modules
|
node_modules
|
||||||
|
vendor
|
||||||
|
.bundle
|
||||||
|
@@ -66,7 +66,7 @@ included in the project:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install the needed gems through Bundler
|
# Install the needed gems through Bundler
|
||||||
bundle install
|
bundle install --path vendor/bundle
|
||||||
# Run the local server
|
# Run the local server
|
||||||
bundle exec jekyll serve
|
bundle exec jekyll serve
|
||||||
```
|
```
|
||||||
|
@@ -19,6 +19,6 @@ defaults:
|
|||||||
values:
|
values:
|
||||||
sitemap: false
|
sitemap: false
|
||||||
|
|
||||||
exclude: ['CNAME', 'CONTRIBUTING.md', 'LICENSE', 'README.md', 'pages/example.md']
|
exclude: ['CNAME', 'CONTRIBUTING.md', 'LICENSE', 'README.md', 'pages/example.md', 'vendor']
|
||||||
|
|
||||||
future: true
|
future: true
|
||||||
|
Reference in New Issue
Block a user