Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Moved tide_core to be added as a test module.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Jan 22, 2019
1 parent 05ab49e commit 81c6b33
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 3 deletions.
66 changes: 66 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
##
# File with per-project environment variables.
#
# It is used by Ahoy and other scripts to read default values.
#
# The values must be scalar (cannot be another variable). This file must have
# at least 1 valid (exportable) assignment of value.
#
# You may create .env.local file and store your local environment variables
# there - it will also be loaded by Ahoy and it is excluded from git.
#
# This file may be left as is to assume default values specified in .ahoy.yml.

# Project name.
# Defaults to the name of the current directory with stripped hyphens and
# underscores.
# PROJECT_NAME=mysite

# Docker Compose project name.
# All containers will have this prefix.
# Defaults to $PROJECT_NAME
# COMPOSE_PROJECT_NAME=mysite

# Drupal module prefix for site-specific modules.
# DRUPAL_MODULE_PREFIX=mysite

# Path to the root of the project inside of the container.
# APP=/app

# Path to the site installation relative to the current directory.
# WEBROOT=docroot

# Local development URL.
# Make sure that there is no trailing slash in the value.
# Defaults to http://<CURRENTDIR>.docker.amazee.io
# LOCALDEV_URL=http://mysite.docker.amazee.io

# Database connection details.
# MYSQL_HOST=mariadb
# MYSQL_PORT=3306

# Change to composer.json for site build.
COMPOSER=composer.build.json

# Uncomment this for site build and set the profile name.
# DRUPAL_PROFILE=

# Uncomment to run the build in suggest mode.
# In this mode, modules from "suggested" part of composer.json will be
# installed.
# INSTALL_SUGGEST=1

# Uncomment to install brand new site.
INSTALL_NEW_SITE=1

# Uncomment to refresh search API on deployment.
# DRUPAL_REFRESH_SEARCHAPI=1

# Uncomment and add comma-separated list of targets (no spaces).
# PHPCS_TARGETS="src,tests"

# Uncomment below if Bay integration is enabled.
# BAY_INTEGRATION_ENABLED=1

# Special override for this module to avoid circular dependencies.
TEST_PACKAGE_NAME=tide_core
4 changes: 1 addition & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"description": "Test content type and related configuration for Tide Drupal 8 distribution",
"type": "drupal-module",
"license": "GPL-2.0-or-later",
"require": {
"dpc-sdp/tide_core": "^1.0"
},
"require": {},
"repositories": {
"drupal": {
"type": "composer",
Expand Down

0 comments on commit 81c6b33

Please sign in to comment.