Need to set up the following config variables:
# Invenio-App-RDM
RDM_RECORDS_USER_FIXTURE_PASSWORDS = {
'[email protected]': '123456'
}
# Invenio-Records-Resources
SITE_UI_URL = "https://127.0.0.1:5000"
SITE_API_URL = "https://127.0.0.1:5000/api"
# Invenio-RDM-Records
RDM_RECORDS_DOI_DATACITE_USERNAME = ""
RDM_RECORDS_DOI_DATACITE_PASSWORD = ""
RDM_RECORDS_DOI_DATACITE_PREFIX = ""
# Invenio-OAuthclient
# secrets will be injected on deployment
CERN_APP_CREDENTIALS = {
"consumer_key": "CHANGE ME",
"consumer_secret": "CHANGE ME",
}
ORCID_APP_CREDENTIALS = {
"consumer_key": "CHANGE ME",
"consumer_secret": "CHANGE ME",
}
pip install invenio-cli
invenio-cli check-requirements --development
invenio-cli install
invenio-cli services setup
invenio-cli run
See the InvenioRDM Documentation for further installation options.
To update dependencies you need to:
- Run
invenio-cli packages lock
- (Optional) Use
changelog.py
to generate the commit message viachangelog.py --package-filter "^invenio" --show-major-bumps --since HEAD
- Commit the updated
uv.lock