Skip to content

zenodo/zenodo-rdm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

68ed7de · Mar 11, 2025
Aug 15, 2024
Oct 17, 2024
Feb 21, 2025
May 7, 2024
Sep 11, 2024
Mar 11, 2024
Jul 12, 2024
Nov 28, 2024
Feb 20, 2025
Dec 4, 2024
Dec 12, 2024
Nov 14, 2022
Mar 18, 2020
Jan 13, 2023
Nov 7, 2024
Sep 18, 2023
Jan 17, 2023
Jan 13, 2023
Nov 4, 2024
Dec 7, 2021
Mar 11, 2025
Mar 11, 2025
May 16, 2024
Nov 16, 2024
Nov 16, 2024
Nov 16, 2024
Feb 18, 2025
Oct 12, 2023
Jan 13, 2023
Jun 21, 2024

Repository files navigation

Zenodo logo

Deployment instructions

Need to set up the following config variables:

# Invenio-App-RDM
RDM_RECORDS_USER_FIXTURE_PASSWORDS = {
    'admin@inveniosoftware.org': '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",
}

Development quick start

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.

Update dependencies

To update dependencies you need to run pipenv lock in the target deployment environment:

# Run the container with x86_64 architecture
docker run -it --platform="linux/amd64" --rm -v $(pwd):/app \
    registry.cern.ch/inveniosoftware/almalinux:1

# Inside the container update the Pipfile.lock
[root@3954486e4a37]# cd /app
[root@3954486e4a37]# pipenv lock