-
Notifications
You must be signed in to change notification settings - Fork 0
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
refactor(api): move api to this repository #157
Merged
Merged
Conversation
This file contains 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
also enhance compose and workflow to handle both images
…pose configuration
github-actions
bot
added
area/docker
Categorizes issue or PR as related to docker.
kind/dependencies
Categorizes issue or PR as related to dependencies.
area/tests
Categorizes issue or PR as related to tests.
labels
Dec 1, 2024
0x1026
force-pushed
the
refactor/move-api-here
branch
13 times, most recently
from
December 2, 2024 01:17
a48d4f8
to
e74f5d9
Compare
0x1026
force-pushed
the
refactor/move-api-here
branch
5 times, most recently
from
December 2, 2024 01:43
217b1cf
to
f9d7d5a
Compare
Welcome to Codecov 🎉Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests. ℹ️ You can also turn on project coverage checks and project coverage reporting on Pull Request comment Thanks for integrating Codecov - We've got you covered ☂️ |
0x1026
force-pushed
the
main
branch
2 times, most recently
from
December 2, 2024 21:12
f43896f
to
a6dd618
Compare
0x1026
removed
area/api
Categorizes issue or PR as related to api.
area/docker
Categorizes issue or PR as related to docker.
kind/dependencies
Categorizes issue or PR as related to dependencies.
area/tests
Categorizes issue or PR as related to tests.
labels
Dec 2, 2024
github-actions
bot
added
the
area/docker
Categorizes issue or PR as related to docker.
label
Dec 2, 2024
…aints in compose files
… better service exposure
0x1026
requested review from
albert1413,
SandraFerrando,
elbacalau,
24Victor and
Chuck-D-Norris
December 3, 2024 01:58
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/api
Categorizes issue or PR as related to api.
area/docker
Categorizes issue or PR as related to docker.
triage/webgraphy
Indicates an issue or PR contains wegraphy.
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 updates to the project, focusing on improving the CI/CD pipeline, adding support for a new API, and enhancing the overall project configuration and documentation. The most important changes include modifications to the GitHub Actions workflows, updates to the Docker configuration, and enhancements to the environment and dependency management.
Move the API to this repository, improve the Docker and CI configurations, and enhance the testing setup with coverage reporting. Simplify the Sensor model and update field names for better clarity.
CI/CD Pipeline Enhancements:
.github/workflows/main.yml
: Added a new job to detect changes and updated the workflow to include the new API service in the build and test processes. [1] [2] [3] [4] [5].github/workflows/tests.yml
: Updated the tests workflow to conditionally run tests for the new API service based on the detected changes. [1] [2]Docker Configuration:
Dockerfile
: Added configurations for setting up and running the development and test environments with Xdebug. [1] [2]api/Dockerfile
: Introduced a new Dockerfile for the API service, including separate stages for dependencies, development, and production.Environment and Dependency Management:
.env.example
: Updated the database user and password configuration for better security.api/requirements.txt
andapi/requirements-dev.txt
: Added necessary dependencies for the FastAPI service and testing. [1] [2]Project Configuration:
.github/dependabot.yml
: Added configuration for Dependabot to manage Python dependencies for the new API service..github/file-filters.yml
: Introduced file filters for the new API service to optimize the CI/CD process..vscode/settings.json
: Updated VS Code settings to include schema validation for the new Docker Compose file.Documentation:
README.md
: Enhanced the installation instructions to include environment variable setup and access URLs for different parts of the application.Resources