-
-
Notifications
You must be signed in to change notification settings - Fork 121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How would you use servicemode? #99
Comments
The If you're looking for something special, please look at these repositories: What is the service mode used for? Imagine that you need to create a service (not in Flow) that can do some DB operations or imports or provide some events without needing to publish its API. Service mode will run the app as usual, but without mentioning an HTTP server. |
Ah OK understand. If flow isn't started with a web server running would you essentially have to build your own UI and routers to interact with the application. Am I right in assuming service mode just exposes the api ? Apologies if I am missing some key concept here! |
No because how do you want to build UI to the Flow if the web server is not started?
No, it doesn't expose the API. API is blocked/not started in service mode.
The service mode isn't meant for the service / REST API. It's deaf and blind. |
As I understand it, it allows you to include flow as part of a bigger app. But I cannot see any implementations of this for inspiration?
The text was updated successfully, but these errors were encountered: