You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(call hive_message_success, Installing the project)
npm install
$(call hive_message_info, Installing the back)
cd back && make install
$(call hive_message_info, Installing the front)
cd front && make install
## Dev - Start the whole application for development purposes
serve:
# https://www.npmjs.com/package/concurrently
$(call hive_message_success, App is running on http://127.0.0.1:63281)
npx concurrently "cd back && make serve.docker" "cd back && make serve.php" "cd front && make serve" --names="Docker,Symfony,React" --prefix=name --kill-others --kill-others-on-fail