Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 797ed04

Browse files
committedNov 14, 2019
Drupal 8 initial commit
1 parent a4fa436 commit 797ed04

File tree

77 files changed

+1694
-325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1694
-325
lines changed
 

‎.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
bin/
3+
docroot/
4+
vendor/
5+
node_modules/
6+
bower_components/
7+
.sass-cache/
8+
console/cache/
9+
/.behat.yml

‎README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
# OS2Web
22

3-
This is a basic installation profile and makefile for an OS2Web project.
3+
This is a Drupal 8 basic installation profile for an OS2Web project.
44

55
## Usage
66

7-
### Makefile
7+
### Composer
88

9-
Use the makefile to fetch general os2web modules and their dependencies.
9+
Use [drupal-composer project](https://github.com/drupal-composer/drupal-project) to fetch drupal core and os2web profile with contribution modules and their dependencies.
1010

1111
Example:
1212
```
13-
> drush make os2web.make {path to document root}
13+
composer create-project drupal-composer/drupal-project:8.x-dev os2web --no-interaction
14+
cd os2web
15+
composer require os2web/os2web
16+
drush si os2web --db-url=mysql://db_user:db_pass@mysql_host/db_name --account-pass=admin -y
1417
```
1518

1619
### Installation profile

0 commit comments

Comments
 (0)
Please sign in to comment.