Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shahinam/shade
Drupal 8 Distribution
https://github.com/shahinam/shade
drupal-8
Last synced: about 1 month ago
JSON representation
Drupal 8 Distribution
- Host: GitHub
- URL: https://github.com/shahinam/shade
- Owner: shahinam
- License: mit
- Created: 2017-06-28T10:38:48.000Z (over 7 years ago)
- Default Branch: 3.x
- Last Pushed: 2018-03-13T04:55:47.000Z (almost 7 years ago)
- Last Synced: 2024-04-19T19:42:20.505Z (8 months ago)
- Topics: drupal-8
- Language: Shell
- Homepage:
- Size: 92.8 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Drupal Shade
Shade is built using Acquia Lightning distibution.
## Installing
The easiest way to install is using [Composer-based project template][template].```
$ composer create-project shahinam/shade-project MY_PROJECT
```Alternatively, you can build using the provided scripts.
```
$ git clone [email protected]:shahinam/shade.git
$ cd shade
$ ./scripts/build.sh ~/Sites/myproject
```This will build the project in the provided destination i.e `~/Sites/myproject`
in this case.`NOTE:` This will base your build based on current branch, if you want build
from a different branch or tag. Use `git checkout` command to switch to the
intended branch or tag.## Developing locally and contributing
If you'd like to contribute, you will need to setup dev build locally. Use the
command below to achive this.```
$ git clone [email protected]:shahinam/shade.git
$ cd shade
$ ./scripts/build-dev.sh shade-dev
```This will create the build `shade-dev` in the same parent directory as `shade`.
The new build will have a composer dependency on your local clone of shade via a
../shade symlink. You can therefore make changes to files in `shade` and see
them immediately reflected in your dev build.## Basic composer usage
### Install a module
```
composer require drupal/
```
Examples
```
composer require drupal/devel
composer require drupal/ctools
```This will install latest available version. If you want to specify a version
```
composer require drupal/:
```### Update a module
```
composer update drupal/
```[template]: https://github.com/shahinam/shade-project "Composer-based project template"