Skip to content

Instantly share code, notes, and snippets.

@ticean
Created March 11, 2020 15:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ticean/00d94c82ec4bf45210d2cd2a3d41a586 to your computer and use it in GitHub Desktop.
Save ticean/00d94c82ec4bf45210d2cd2a3d41a586 to your computer and use it in GitHub Desktop.
A custom configuration for Reaction Development Platform.
###############################################################################
### Reaction OSS v3.0.4
### This is an example configuration and is not modified from the original
### reaction-v3.0.4.mk
###############################################################################
# List of tools that must be installed.
# A simple check to determine the tool is available. No version check, etc.
define REQUIRED_SOFTWARE
docker \
docker-compose \
git \
node \
yarn
endef
# Defined here are the subprojects in a comma-separated format
# GIT_REPO_URL,SUBDIR_NAME,TAG
# GIT_REPO_URL is the URL of the git repository
# SUBDIR_NAME is just the directory name itself
# TAG is the git tag or branch to checkout
# Projects will be started in this order
define SUBPROJECT_REPOS
git@github.com:/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \
git@github.com:/reactioncommerce/reaction.git,reaction,v3.3.0 \
git@github.com:/reactioncommerce/reaction-identity.git,reaction-identity,v3.0.0 \
git@github.com:/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.5 \
git@github.com:/reactioncommerce/example-storefront.git,example-storefront,v3.0.0
endef
# List of user defined networks that should be created.
define DOCKER_NETWORKS
reaction.localhost
endef
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment