File tree Expand file tree Collapse file tree 3 files changed +31
-12
lines changed Expand file tree Collapse file tree 3 files changed +31
-12
lines changed Original file line number Diff line number Diff line change @@ -87,8 +87,7 @@ inquirer
8787 . then ( b . prepareBuildTool )
8888 . then ( ( ) => {
8989 console . log ( chalk . green . bold ( '\nAlright! Your app of choice is ready 🎉' ) ) ;
90- console . log ( `Please run ${ chalk . green . bold ( 'cd build; ./docker/install' ) } to install dependencies` ) ;
91- console . log ( `When done, run ${ chalk . green . bold ( 'docker-compose up' ) } to launch your app` ) ;
90+ console . log ( `Please run ${ chalk . green . bold ( 'cd build; make' ) } to install, build and launch.` ) ;
9291 } )
9392 ;
9493 } )
Original file line number Diff line number Diff line change 1+ .DEFAULT_GOAL := all
2+ .PHONY: all docker-build install start { {#fancyFrontend} }build-js build watch-js watch{ {/fancyFrontend} }
3+
4+ all: install { {#fancyFrontend} }build{ {/fancyFrontend} } start
5+
6+ docker-build:
7+ docker-compose build
8+
9+ install: docker-build
10+ { {#deps} }
11+ docker-compose run web npm install --save { { deps } }
12+ { {/deps} }
13+ { {#devDeps} }
14+ docker-compose run web npm install --save-dev { { devDeps } }
15+ { {/devDeps} }
16+
17+ start:
18+ docker-compose up
19+
20+ { {#fancyFrontend} }
21+ build-js:
22+ docker-compose run web npm run build-js
23+
24+ build: build-js
25+
26+ watch-js:
27+ docker-compose run web npm run watch-js
28+
29+ watch: watch-js
30+ { {/fancyFrontend} }
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments