-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Dev server for running Functions in dev environment #21
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…ort for function directory and refactoring request handling. The application now accepts a directory parameter to locate the environment.yaml file.
…ry and secret token, removing parameters from request handling and server functions. Update command-line argument parsing to set environment variables if provided.
…rt on changes to both Functions code and the environment.yaml file.
…and-line argument. Add support for --no-reload option to disable auto-reloading and update argument parsing for secret token handling.
albertsj
reviewed
Mar 19, 2025
…ment.yaml` file location in the development server section.
Co-authored-by: Julian Alberts <julian.alberts@contact-software.com>
albertsj
approved these changes
Mar 19, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added a development server that allows you to run your Functions in your development environment. The server reads Functions from the
environment.yamlfile in your working directory and makes the Functions available via HTTP endpoints. You can then connect those Functions to your CIM Database Cloud instance using Webhooks.This speeds up the development of Functions, because you can instantly test your changes, without deploying them to the cloud infrastructure first.
The development server can be started with
python -m csfunctions.devserver(see docs)