All Projects → LastCallMedia → Drupal-Scaffold

LastCallMedia / Drupal-Scaffold

Licence: GPL-2.0 License
DEPRECATED: This project has been replaced by documentation within Confluence regarding best practices for setting up a new Drupal 9 project.

Programming Languages

PHP
23972 projects - #3 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
shell
77523 projects
VCL
57 projects
CSS
56736 projects
Gherkin
971 projects

Projects that are alternatives of or similar to Drupal-Scaffold

tooltip
[DEPRECATED] The tooltip that has all the right moves
Stars: ✭ 133 (+177.08%)
Mutual labels:  deprecated, archived
VRTK.Tutorials.OculusIntegration
Prefabs and code for use with the Oculus Integration Unity Package
Stars: ✭ 26 (-45.83%)
Mutual labels:  deprecated, archived
ionic-3D-card-carousel
DEPRECATED Sample project that shows an experimental 3D card carousel in Ionic.
Stars: ✭ 29 (-39.58%)
Mutual labels:  deprecated, archived
summit2016-RankingPredict
Deprecated, No more maintained - Deprecated, no longer maintained
Stars: ✭ 34 (-29.17%)
Mutual labels:  deprecated, archived
react-native-apple-sign-in
Apple Signin for your React Native applications
Stars: ✭ 16 (-66.67%)
Mutual labels:  deprecated, archived
DeepDIVA
⛔️ DEPRECATED <Python Framework for Reproducible Deep Learning Experiments>
Stars: ✭ 32 (-33.33%)
Mutual labels:  deprecated, archived
Azure-AppServices-Diagnostics
Azure App Service Diagnostics provides developers ability to write various diagnostics features which helps customers to diagnose and troubleshoot their applications hosted on app services.
Stars: ✭ 42 (-12.5%)
Mutual labels:  deprecated, archived
contentstats
DEPRECATED – See how many entries have been created for channels and structures in your Craft CMS website.
Stars: ✭ 29 (-39.58%)
Mutual labels:  deprecated, archived
OSM-Completionist
⛔️ DEPRECATED iOS companion app for OpenStreetMap that allows contributors to complete missing information
Stars: ✭ 17 (-64.58%)
Mutual labels:  deprecated, archived
fullcontact4j
⛔ [DEPRECATED] A Java client for the FullContact API
Stars: ✭ 28 (-41.67%)
Mutual labels:  deprecated, archived
jest-badges-readme
Creates a group of coverage badges from Jest into your README
Stars: ✭ 30 (-37.5%)
Mutual labels:  deprecated, archived
ton-client-rs
TON Labs SDK Client Library for Rust
Stars: ✭ 15 (-68.75%)
Mutual labels:  deprecated, archived
cartesian ros control
DEPRECATED: A set of packages to bring Cartesian control functionality to the ROS-control framework.
Stars: ✭ 33 (-31.25%)
Mutual labels:  deprecated, archived
steam
DEPRECATED Build, manage and deploy H2O's high-speed machine learning models.
Stars: ✭ 59 (+22.92%)
Mutual labels:  deprecated, archived
Sphero-Win-SDK
🚫 DEPRECATED: Sphero SDK for Win 8.1+ using RFCOMM
Stars: ✭ 36 (-25%)
Mutual labels:  deprecated, archived
passion
An object-oriented LÖVE game engine
Stars: ✭ 35 (-27.08%)
Mutual labels:  deprecated, archived
microsoft-teams-faqplusplus-app
DEPRECATED - This repository contains a deprecated version of the FAQ Plus app template. Please see the README file for more details and a link to the new repository
Stars: ✭ 47 (-2.08%)
Mutual labels:  deprecated, archived
XpringKit
XpringKit provides a Swift SDK for interacting with Xpring Protocols (XRP/PayID/ILP). This library is deprecated.
Stars: ✭ 23 (-52.08%)
Mutual labels:  deprecated, archived
QR
DEPRECATED The bookmarklet and extensions generate QRCode of the current URL for viewing on mobile devices (Google Chrome/Mozilla Firefox/Opera/Safari)
Stars: ✭ 20 (-58.33%)
Mutual labels:  deprecated, archived
Sphero-AR-SDK
🚫 DEPRECATED: Sphero's augmented reality SDK
Stars: ✭ 46 (-4.17%)
Mutual labels:  deprecated, archived

LCM Drupal 8 Scaffolding

Build Status Latest Stable Version

This is a boilerplate Drupal 8 build that bundles some standard tools to make it a good starting point for an enterprise scale Drupal build. It is conceptually similar to drupal-composer/drupal-scaffold, but it has a much simpler (and more manual) Composer setup, and includes additional tools. For additional information on this project, see the 2016 Badcamp presentation slides

Starting a New Project

  • Use composer to create a new project, starting from this repository as a template:
    composer create-project lastcall/drupal-scaffold PROJECTNAME
  • Bring up the Docker containers and enter the Drupal container.
    docker-compose up -d drupal
    docker-compose exec drupal /bin/bash
  • From the repository root (/var/www inside the Drupal container), install NPM and composer dependencies:
    yarn install
    composer install
  • Visit the Drupal site in your browser to install Drupal and continue. The default URL will be http://localhost:8080.

See the scaffold documentation for next steps.

Stop here!

Everything below this line applies to scaffold projects that are already set up. The section below will be the start of your project's README.


Setting Up for Local Development

This project is built using Drupal Scaffold. Before you begin, you must have Docker and Docker Compose installed on your local machine. For installation instructions, see the Drupal Scaffold - Docker documentation.

  1. Clone this repository.

  2. If you haven't created and set your Pantheon machine token, do that now.

  3. Start the Docker environment and shell in:

    docker-compose up -d drupal
    docker-compose exec drupal bash
  4. Install Composer dependencies:

    composer install
  5. Install NPM dependencies:

    yarn install
  6. Run composer site:import to pull down and import a copy of the site's database. If Pantheon gives you an error here, make sure you followed Step 2 above correctly and that you're running Docker in a new terminal window

  7. Run drupal site:mode dev to switch to dev configuration.

  8. Run gulp build (or gulp watch) and drush cr (from within the Drupal root at /var/www/web) to compile the theme.

  9. View your new local site in the browser at http://localhost:8080/.

See the Drupal Scaffold documentation for more information on how to use the tools and how to use this project. To find more information on the Docker stack, visit the Docker documenation.

Testing

Both testing tools listed below are using the following JSON files for switching the environments and fetching the URLs for these testing tools. If any changes are needed make changes to the files below:

The option to switch environments can be used by adding the following to command --target=prod. It will always default to local if no target is being used.

Nightcrawler

Nightcrawler will run in CircleCI for each Pull Request, but if you want to test the PR locally use the following command

$ docker-compose run drupal node_modules/.bin/nightcrawler crawl

Backstop

Backstop is only tested manually, see documentation to test your branch.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].