Deploy an App with Eureka
Build an App under 5 minutes.
This guide helps you in creating your first application with IndustryApps AppStore.
Before creating the application you need to complete the registration step as explained under Register developer account.
How to develop an application
The application tutorial here is only to provide you a quick approach to create a simple hello world application using Eureka and view it inside IndustryApps. It would give you a quick understanding on the business model by utilising the Eureka Service Discovery.
# Step 1 Creating node application
npm init -y
# Step 2 Implementing basic requirements
# Step 2.1 Adding Dependencies
npm install eureka-js-client express nodemon --save
eureka-js-client to implement registry sync
express as application server
nodemon to react with changes without reloading
# Step 2.2 Creating basic server and implementing application registry sync
# Step 2.3 Adding theming and basic components
Following urls /dam/public/iapp-ui-styles/v.1.0.0/main.css
and/dam/public/iapp-generics/v.1.0.1/iapp-generics.js
will be resolved when you access the application via local gateway.
# Step 3 Packing as Docker image
# Step 4 Access platform with credentials
When accessing the URL of the platform provided by the team you will find a screen like below.
When clicking on the menu item
you will be redirected to your app. Screenshot based on above snippet is given below.
Last updated