This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#22, created way about documentation
- Loading branch information
Showing
8 changed files
with
77 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Drupal Commerce | ||
|
||
let's go shopping! | ||
|
||
# Install | ||
|
||
**@todo** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Development | ||
|
||
OK, let's make something awesome! | ||
|
||
## Docker | ||
|
||
**@todo:** | ||
|
||
## Custom theme | ||
|
||
**@todo:** | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Docker | ||
|
||
**God bless virtualization!** | ||
|
||
# Install on macOS | ||
|
||
**@todo** | ||
|
||
# Install on Ubuntu | ||
|
||
**@todo** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Requirements | ||
|
||
Your localhost should looking ideally this way: | ||
|
||
- Intel Core i5 and better | ||
- more than 8 GB RAM | ||
- Linux / macOS | ||
- installed docker [install here](./.doc/docker.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Varnish Cache | ||
|
||
If you want to use [Varnish Cache](https://varnish-cache.org/) for your project, we are recommend these steps: | ||
|
||
1. add varnish modules: | ||
``` | ||
composer require drupal/purge | ||
composer require drupal/purge_purger_http | ||
``` | ||
2. allow them: | ||
``` | ||
cd docroot | ||
../bin/drush en purge -y | ||
../bin/drush en purge_purger_http -y | ||
``` | ||
3. setup modules | ||
**@todo:** add screenshots about config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
# Ignore directories generated by Composer | ||
/drush/contrib/ | ||
/vendor/ | ||
/web/core/ | ||
/web/modules/contrib/ | ||
/web/themes/contrib/ | ||
/web/profiles/contrib/ | ||
/web/libraries/ | ||
/docroot/core/ | ||
/docroot/modules/contrib/ | ||
/docroot/themes/contrib/ | ||
/docroot/profiles/contrib/ | ||
/docroot/libraries/ | ||
|
||
# Ignore sensitive information | ||
/web/sites/*/settings.php | ||
/web/sites/*/settings.local.php | ||
/docroot/sites/*/settings.php | ||
/docroot/sites/*/settings.local.php | ||
|
||
# Ignore Drupal's file directory | ||
/web/sites/*/files/ | ||
/docroot/sites/*/files/ | ||
|
||
# Ignore SimpleTest multi-site environment. | ||
/web/sites/simpletest | ||
/docroot/sites/simpletest | ||
|
||
# Ignore files generated by PhpStorm | ||
/.idea/ | ||
/.idea/ | ||
/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters