Run npm run dev:ssr
for running this as server side app. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
Run the globex-store globex-db images locally and setup these URLs
export API_TRACK_USERACTIVITY="http://localhost:9000/track" export API_GET_PAGINATED_PRODUCTS="http://localhost:9000/services/catalog/product" export API_GET_PRODUCT_DETAILS_BY_IDS="http://localhost:9000/services/catalog/product/:ids" export API_CATALOG_RECOMMENDED_PRODUCT_IDS="http://localhost:9000/score/product" export API_CART_SERVICE="http://localhost:9000/services/cart" export API_CUSTOMER_SERVICE="http://localhost:9000/services/customer/id/:custId" export API_ORDER_SERVICE="http://localhost:8080/web-gateway/services/order"
export SSO_CUSTOM_CONFIG="globex-web-gateway" export SSO_AUTHORITY="http://localhost:8180/realms/user1-globex_users" export SSO_REDIRECT_LOGOUT_URI="http://localhost:4200/home" export SSO_LOG_LEVEL=2
docker build -t quay.io/cloud-architecture-workshop/globex-web: . docker push quay.io/cloud-architecture-workshop/globex-web: