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.
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
FROM node:carbon
# create the app directory for inside the Docker image
WORKDIR /usr/src/app
# install app dependencies from the package.json (and the package-lock.json)
COPY package*.json ./
RUN npm install
# bundle app source inside Docker image
COPY . .
# expose port 8080 to have it mapped by Docker daemon
EXPOSE 8080
# define the command to run the app (it's the npm start script from the package.json)
# npm start
CMD [ "npm", "start" ]
# 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.