- Launch the Spring Boot project with debugger in any preferable way (using the IDE / etc)
- Navigate to the
src/main/frontend
- Set the
proxy
value forpackage.json
file with the correct http(s) path to your environment:
{
"proxy": "http://localhost:8080"
}
- Run
npm start
to launch the front-end watcher and find the development version of UI navigating to the linkhttp://localhost:3000
This document contains how-to instraction to build and run app using Docker and Docker Compose.
docker-compose -f docker-compose.yml up -d
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d
Please pay attantion that local mysql is required to init db.
./setup.sh --master-count 1 --agent-count 1 --location westus --db-admin-password Password@1
./build.sh
./deploy.sh
Please see how-to for more details