Browse Source

fix(make): Add additional setup steps to `make bootstrap` (#13518)

Alberto Leal 5 years ago
parent
commit
397ad5f474
1 changed files with 7 additions and 1 deletions
  1. 7 1
      Makefile

+ 7 - 1
Makefile

@@ -11,12 +11,18 @@ PIP = LDFLAGS="$(LDFLAGS)" pip
 WEBPACK = NODE_ENV=production ./node_modules/.bin/webpack
 YARN_VERSION = 1.13.0
 
-bootstrap: install-system-pkgs develop create-db apply-migrations
+bootstrap: install-system-pkgs develop init-config run-dependent-services create-db apply-migrations
 
 develop: setup-git ensure-venv develop-only
 
 develop-only: update-submodules install-yarn-pkgs install-sentry-dev
 
+init-config:
+	sentry init --dev
+
+run-dependent-services:
+	sentry devservices up
+
 test: develop lint test-js test-python test-cli
 
 ensure-venv: