forked from reactioncommerce/reaction-development-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
42 lines (37 loc) · 1.5 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
###############################################################################
### Reaction Platform Configuration
###
### This file defines configuration used in the Makefile.
### You may add and/or override these values with your own custom configuration
### in `config.local.mk`.
###
### Please see GNU Makes multi-line variable documentation for more info.
### https://www.gnu.org/software/make/manual/html_node/Multi_002dLine.html
###############################################################################
# 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
HOOK_DIR=.reaction/project-hooks