Feat: Dev server for running Functions in dev environment#21
Merged
jens-kuerten merged 26 commits intomainfrom Mar 19, 2025
Merged
Feat: Dev server for running Functions in dev environment#21jens-kuerten merged 26 commits intomainfrom
jens-kuerten merged 26 commits intomainfrom
Conversation
added 6 commits
March 6, 2025 14:51
…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.
added 11 commits
March 19, 2025 12:01
…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.
added 7 commits
March 19, 2025 12:49
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
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
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)