Hello guys,
Are there any faster ways to deploy my app to localhost for testing its features? Currently, my workflow involves several manual steps:
- Making changes in IntelliJ IDE
- Packaging the app with Maven
- Renaming and Copying & pasting it to the WildFly v24.0.1 standalone\deployments\ folder
- Running standalone.bat
- Checking the app locally in a web browser.
I am wondering if there is a smarter and more efficient way to achieve continuous deployment, similar to Python's Flask, where for each change, it automatically reloads the server and deploys the new feature. Thank you for any advice and suggestions!