Skip to content
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

## Prerequisites

* Composer
* Docker / Docker compose
* Composer (optional)
* PhpStorm (optional)

## Getting started
Expand All @@ -16,6 +16,20 @@ To get started run the following command:
composer create-project mstrelan/drupal-contrib
```

### Manual installation

You can install this project manually without php or composer on your host machine.

```
git clone [email protected]:mstrelan/drupal-contrib.git
cd drupal-contrib
make start
docker-compose exec php-cli composer run post-root-package-install
make clean
```

You may need to edit the .env file to set your UID and GID.

## Directory structure

* **app/** - this is the web root. The Drupal repo will be checked out here.
Expand Down