Skip to content

Commit

Permalink
initil code
Browse files Browse the repository at this point in the history
  • Loading branch information
ymdahi committed Feb 10, 2021
0 parents commit 47071c7
Show file tree
Hide file tree
Showing 3 changed files with 6,727 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Ignore drupal core (if not versioning drupal sources)
/core
/vendor
/web
/modules/README.txt
/profiles/README.txt
/themes/README.txt
/sites/README.txt
/sites/example.sites.php
/sites/example.settings.local.php
/sites/development.services.yml
/.csslintrc
/.editorconfig
/.eslintignore
/.eslintrc.json
/.gitattributes
/.ht.router.php
/.htaccess
/autoload.php
/example.gitignore
/index.php
/INSTALL.txt
/LICENSE.txt
/README.txt
/robots.txt
/update.php
/web.config
114 changes: 114 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
{
"name": "drupal/recommended-project",
"description": "Project template for Drupal 8 projects with a relocated document root",
"type": "project",
"license": "GPL-2.0-or-later",
"homepage": "https://www.drupal.org/project/drupal",
"support": {
"docs": "https://www.drupal.org/docs/user_guide/en/index.html",
"chat": "https://www.drupal.org/node/314178"
},
"repositories": [
{
"type": "composer",
"url": "https://packages.drupal.org/8"
},
{
"type": "package",
"package": {
"name": "learnful-labs/learnful_scribe",
"version": "2.0",
"type":"drupal-custom-profile",
"source": {
"url": "https://github.com/Learnful-Labs/learnful_scribe.git",
"type": "git",
"reference": "main"
}
}
}
],
"require": {
"composer/installers": "^1.2",
"cweagans/composer-patches": "~1.0",
"drupal/core-composer-scaffold": "^8.8",
"drupal/core-project-message": "^8.8",
"drupal/core-recommended": "^8.8",
"drupal/gin": "3.0-alpha33",
"drupal/gin_login": "1.0-rc7",
"drupal/ibm_watson": "1.0-alpha2",
"drupal/token": "^1.9",
"drush/drush": "^10.3",
"learnful-labs/learnful_scribe": "^2.0"
},
"conflict": {
"drupal/drupal": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "web/"
}
},
"installer-paths": {
"web/core": [
"type:drupal-core"
],
"web/libraries/{$name}": [
"type:drupal-library"
],
"web/modules/contrib/{$name}": [
"type:drupal-module"
],
"web/profiles/contrib/{$name}": [
"type:drupal-profile"
],
"web/themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"web/modules/custom/{$name}": [
"type:drupal-custom-module"
],
"web/themes/custom/{$name}": [
"type:drupal-custom-theme"
],
"web/profiles/custom/{$name}": [
"type:drupal-custom-profile"
]
},
"enable-patching": true,
"patches": {
"drupal/ibm_watson": {
"various updates": "https://www.drupal.org/files/issues/2021-02-09/3196406_various_updates.patch"
}
},
"drupal-core-project-message": {
"include-keys": [
"homepage",
"support"
],
"post-create-project-cmd-message": [
"<bg=blue;fg=white> </>",
"<bg=blue;fg=white> Congratulations, you’ve installed the Drupal codebase </>",
"<bg=blue;fg=white> from the drupal/recommended-project template! </>",
"<bg=blue;fg=white> </>",
"",
"<bg=yellow;fg=black>Next steps</>:",
" * Install the site: https://www.drupal.org/docs/8/install",
" * Read the user guide: https://www.drupal.org/docs/user_guide/en/index.html",
" * Get support: https://www.drupal.org/support",
" * Get involved with the Drupal community:",
" https://www.drupal.org/getting-involved",
" * Remove the plugin that prints this message:",
" composer remove drupal/core-project-message"
]
}
}
}
Loading

0 comments on commit 47071c7

Please sign in to comment.