-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from reactioncommerce/release-next-v3.7.0
release 3.7.0
- Loading branch information
Showing
4 changed files
with
45 additions
and
7 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
############################################################################### | ||
### Reaction OSS v3.7.0 | ||
### | ||
### See: `/config.mk` for documentation. | ||
############################################################################### | ||
|
||
# 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 | ||
https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ | ||
https://github.com/reactioncommerce/reaction.git,reaction,v3.8.0 \ | ||
https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.1.0 \ | ||
https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.7 \ | ||
https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0 | ||
endef | ||
|
||
# List of user defined networks that should be created. | ||
define DOCKER_NETWORKS | ||
reaction.localhost | ||
endef |