Commit 8e5395a 1 parent 76cc221 commit 8e5395a Copy full SHA for 8e5395a
File tree 5 files changed +1374
-1361
lines changed
5 files changed +1374
-1361
lines changed Original file line number Diff line number Diff line change 1
- # gitignore template for Drupal 8 projects
2
- #
3
- # earlier versions of Drupal are tracked in `community/PHP/`
1
+ .lando.local.yml
4
2
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
35
4
/.editorconfig
36
- /.eslintignore
37
- /.eslintrc.json
38
5
/.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
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ name: drupal-9-starter-app
2
2
recipe : drupal9
3
3
config :
4
4
webroot : docroot
5
-
5
+ services :
6
+ appserver :
7
+ build :
8
+ - composer install
6
9
tooling :
7
10
blt :
8
11
service : appserver
Original file line number Diff line number Diff line change
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
+ ```
Original file line number Diff line number Diff line change 5
5
"require" : {
6
6
"php" : " >=7.3" ,
7
7
"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 " ,
10
10
"cweagans/composer-patches" : " ^1.7" ,
11
11
"acquia/blt" : " ^12" ,
12
12
"drupal/token" : " ^1.7" ,
13
13
"drupal/pathauto" : " ^1.8" ,
14
- "drupal/seaside_admin" : " ^1.12" ,
15
- "drupal/seaside_admin_toolbar" : " ^1.13" ,
16
14
"drupal/field_group" : " ^3.1"
17
15
},
18
16
"license" : " GPL-3.0" ,
79
77
}
80
78
},
81
79
"require-dev" : {
82
- "drupal/features" : " ^3.11" ,
83
80
"drupal/devel" : " ^4.0"
84
81
}
85
82
}
You can’t perform that action at this time.
0 commit comments