-
Notifications
You must be signed in to change notification settings - Fork 4
Add FastAPI examples for Vultron ActivityStreams #246
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
Draft
ahouseholder
wants to merge
28
commits into
main
Choose a base branch
from
feature/api
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
… are different in JSON vs python for consistent round-trip between JSON and python
Squashed commits: [5409ade] more linting [fdd5e82] more linting [d144e94] more linting [a2c2826] more linting [b9d78ea] more linting [c74cbc4] more linting [e44b8bc] more linting (+3 squashed commits) Squashed commits: [900c129] more linting [b2fddc5] more linting (+6 squashed commits) Squashed commits: [2347994] more linting [d4b857e] more linting [b55a1f0] more linting [882d7eb] more linting [62d395c] more linting [7403ba7] more linting [a6ffad7] more linting (+1 squashed commit) Squashed commits: [7011d55] fix linter errors
# Conflicts: # vultron/as_vocab/base/base.py # vultron/as_vocab/base/objects/base.py
…s` and `/validate` endpoints
…repare for future API revs.
…nment in docker-compose.yml
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.
This pull request introduces several improvements to the development workflow, updates dependencies, and refactors tests for clarity and maintainability. The most significant changes include support for Python 3.13, enhanced Docker-based development and hot-reloading for the API, dependency updates, and test refactoring to streamline usage and assertions.
Development environment and workflow improvements:
README-DEV.md
with clear instructions for running tests, demos, API, and docs in Docker containers, improving onboarding for developers.api_dev
,docker_api_dev
) and Docker Compose service (api-dev
) for running the API server in development mode with hot reloading and live code changes. [1] [2].dockerignore
to optimize Docker builds by excluding unnecessary files and directories.Dependency and environment updates:
docker/Dockerfile
and related configs, updated Black and target versions, and added/updated dependencies (fastapi
,uvicorn
, fixedpydantic
version). [1] [2] [3] [4] [5] [6]Docker Compose enhancements:
vultron
andtest
directories in test and API-dev services for live code changes, and persistent virtual environment volume for development convenience. [1] [2]Test refactoring and improvements:
find_matches
test, and updating actor activity tests for better validation and clarity. [1] [2] [3] [4]API and example test adjustments:
These changes collectively improve developer experience, code maintainability, and ensure compatibility with the latest Python and dependency versions.