Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add manual installation instructions #8

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
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.
mstrelan marked this conversation as resolved.
Show resolved Hide resolved

## Directory structure

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