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
refactor(base.mk): enhance make run command for improved user interaction
Added a provisional enhancement to the `run` target in base.mk to improve the user experience before modularizing the Docker run commands into separate functions. Now the user is notified about the container's idle state and connection details before proceeding. This sets the foundation for future improvements.
echo"$(RED)❌ Failed to start the container.$(RESET)";\
95
+
exit 1;\
96
+
fi;\
97
+
HOSTNAME=$$(hostname);\
98
+
echo"$(GREEN)✅ BioSpring container started successfully!$(RESET)";\
99
+
echo"";\
100
+
echo"$(YELLOW)⚠️ Before continuing, please note that the BioSpring program is running in idle mode within the container, waiting for a connection. By proceeding, we will reattach to the container and display BioSpring's logs in real-time. Afterward, you can use the following information to connect:$(RESET)";\
101
+
echo"";\
102
+
echo" - On the local machine: $(GREEN)localhost:8888$(RESET) or $(GREEN)127.0.0.1:8888$(RESET)";\
103
+
echo" - On the network: $(GREEN)$$HOSTNAME:8888$(RESET)";\
0 commit comments