Skip to content

Commit 8e5395a

Browse files
Version updates.
1 parent 76cc221 commit 8e5395a

File tree

5 files changed

+1374
-1361
lines changed

5 files changed

+1374
-1361
lines changed

.gitignore

+12-46
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,15 @@
1-
# gitignore template for Drupal 8 projects
2-
#
3-
# earlier versions of Drupal are tracked in `community/PHP/`
1+
.lando.local.yml
42

5-
# Ignore configuration files that may contain sensitive information
6-
/sites/*/*settings*.php
7-
/sites/*/*services*.yml
8-
9-
# Ignore paths that may contain user-generated content
10-
/sites/*/files
11-
/sites/*/public
12-
/sites/*/private
13-
/sites/*/files-public
14-
/sites/*/files-private
15-
16-
# Ignore paths that may contain temporary files
17-
/sites/*/translations
18-
/sites/*/tmp
19-
/sites/*/cache
20-
21-
# Ignore testing related files
22-
/sites/simpletest
23-
24-
# Ignore drupal core (if not versioning drupal sources)
25-
/core
26-
/modules/README.txt
27-
/profiles/README.txt
28-
/sites/README.txt
29-
/sites/example.sites.php
30-
/sites/example.settings.local.php
31-
/sites/development.services.yml
32-
/themes/README.txt
33-
/vendor
34-
/.csslintrc
3+
vendor
354
/.editorconfig
36-
/.eslintignore
37-
/.eslintrc.json
385
/.gitattributes
39-
/.htaccess
40-
/autoload.php
41-
/composer.json
42-
/composer.lock
43-
/example.gitignore
44-
/index.php
45-
/LICENSE.txt
46-
/README.txt
47-
/robots.txt
48-
/update.php
49-
/web.config
6+
local.settings.php
7+
local.drush.yml
8+
local.site.yml
9+
local.services.yml
10+
*.local
11+
local.blt.yml
12+
deployment_identifier
13+
/travis_wait*
14+
/files-private
15+
.phpcs-cache

.lando.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: drupal-9-starter-app
22
recipe: drupal9
33
config:
44
webroot: docroot
5-
5+
services:
6+
appserver:
7+
build:
8+
- composer install
69
tooling:
710
blt:
811
service: appserver

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Drupal9 Starter Template
2+
3+
Drupal 9 template to quickly start with fresh Drupal project.
4+
It has `.lando.yml` file included to quick start development using Lando.
5+
6+
### Steps to INSTALL
7+
- To start fresh.
8+
```
9+
lando start
10+
```
11+
- To install Drupal using BLT.
12+
```
13+
lando blt setup
14+
```

composer.json

+2-5
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@
55
"require": {
66
"php": ">=7.3",
77
"composer/installers": "^1.9",
8-
"drupal/core-composer-scaffold": "^9.0",
9-
"drupal/core-recommended": "^9.0",
8+
"drupal/core-composer-scaffold": "^9.1",
9+
"drupal/core-recommended": "^9.1",
1010
"cweagans/composer-patches": "^1.7",
1111
"acquia/blt": "^12",
1212
"drupal/token": "^1.7",
1313
"drupal/pathauto": "^1.8",
14-
"drupal/seaside_admin": "^1.12",
15-
"drupal/seaside_admin_toolbar": "^1.13",
1614
"drupal/field_group": "^3.1"
1715
},
1816
"license": "GPL-3.0",
@@ -79,7 +77,6 @@
7977
}
8078
},
8179
"require-dev": {
82-
"drupal/features": "^3.11",
8380
"drupal/devel": "^4.0"
8481
}
8582
}

0 commit comments

Comments
 (0)