Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.