Quickstart Deployment Mode #1732
-
Hi, everyone! At present, there are no Pipelines or dashboards in the user's initial page after StreamPipes is installed. Introducing Quickstart deployment mode could initiate all elements of StreamPipes, such as the backend, message broker, user interface, and so on. This mode is designed to produce a greater number of StreamPipes assets straightaway upon startup. With the introduction of this new implementation style, it is anticipated that each StreamPipes module will come with pre-existing assets, including data sources, pipelines, dashboard. The Quickstart mode could help users could easily explore StreamPipes’features. My Implementations of the Quickstart Deployment are as follows:
However, before we proceed with this deployment, there are a few more details I'd like to discuss with you and hope to get your invaluable insights and suggestions.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
Hi @Cccccrystall, What resources would you expect to see in this quick start mode? |
Beta Was this translation helpful? Give feedback.
-
Purposeintroduces a new docker-compose.quickstart.yml file and related configurations, aiming to streamline and enhance the user experience for quick project setups. SolutionHow to use Quickstart Deployment Mode
New Docker Compose File: Usage Instructions: To utilize the new configurations, the user should build the script-runner service with the command: docker-compose -f docker-compose.quickstart.yml build script-runner. |
Beta Was this translation helpful? Give feedback.
Purpose
introduces a new docker-compose.quickstart.yml file and related configurations, aiming to streamline and enhance the user experience for quick project setups.
Solution
How to use Quickstart Deployment Mode
Use "mvn clean package" in the streampipes root folder
Enter the ui folder and use "npm install" and "npm run build"
Enter the installer/compose folder
Use "
docker-compose -f docker-compose.quickstart.yml build script-runner
" to build the dockerUse "
docker-compose -f docker-compose.quickstart.yml up -d
" to start all services!4.After services are started, go to http://localhost/, you could see the defa…