Created
March 11, 2020 15:21
-
-
Save ticean/00d94c82ec4bf45210d2cd2a3d41a586 to your computer and use it in GitHub Desktop.
A custom configuration for Reaction Development Platform.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
### 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 | |
[email protected]:/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ | |
[email protected]:/reactioncommerce/reaction.git,reaction,v3.3.0 \ | |
[email protected]:/reactioncommerce/reaction-identity.git,reaction-identity,v3.0.0 \ | |
[email protected]:/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.5 \ | |
[email protected]:/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