![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
A microservice designed to provide CRUD operations for the Person HEA object type
Research Informatics Shared Resource, Huntsman Cancer Institute, Salt Lake City, UT
The HEA Person Microservice is A microservice designed to provide CRUD operations for the Person HEA object type.
Initial release.
python -m venv <venv_directory>
command, substituting <venv_directory>
with the directory name of your virtual environment. Run source <venv_directory>/bin/activate
(or <venv_directory>/Scripts/activate
on Windows) to activate the virtual
environment. You will need to activate the virtualenv every time before starting work, or your IDE may be able to do
this for you automatically. Note that PyCharm will do this for you, but you have to create a new Terminal panel
after you newly configure a project with your virtualenv.pip install -r requirements_dev.txt
.
Do NOT run python setup.py develop
. It will break your environment.This microservice has Swagger3/OpenAPI support so that you can quickly test the APIs in a web browser. Do the following:
run-swaggerui.py
file in your terminal. This file contains some test objects that are loaded into a MongoDB
Docker container.http://127.0.0.1:8080/docs
in your web browser.Once run-swaggerui.py
is running, you can also access the APIs via curl
or other tool. For example, in Windows
PowerShell, execute:
Invoke-RestMethod -Uri http://localhost:8080/buckets/ -Method GET -Headers @{'accept' = 'application/json'}`
In MacOS or Linux, the equivalent command is:
curl -X GET http://localhost:8080/buckets/ -H 'accept: application/json'
Run tests with the pytest
command from the project root directory. To improve performance, run tests in multiple
processes with pytest -n auto
.
include-system-site-packages
is set to true
.See the RELEASING.md file for details.
FAQs
A microservice designed to provide CRUD operations for the Person HEA object type
We found that heaserver-people demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.