Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenodo/zenodo-rdm
Zenodo, powered by InvenioRDM
https://github.com/zenodo/zenodo-rdm
invenio invenio-rdm zenodo
Last synced: 2 months ago
JSON representation
Zenodo, powered by InvenioRDM
- Host: GitHub
- URL: https://github.com/zenodo/zenodo-rdm
- Owner: zenodo
- License: gpl-2.0
- Created: 2020-03-17T14:02:25.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T13:37:03.000Z (9 months ago)
- Last Synced: 2024-04-22T13:42:34.665Z (9 months ago)
- Topics: invenio, invenio-rdm, zenodo
- Language: Python
- Homepage: https://zenodo.org/
- Size: 4.12 MB
- Stars: 24
- Watchers: 16
- Forks: 23
- Open Issues: 120
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Deployment instructions
Need to set up the following config variables:
``` python
# 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",
}
```## 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](https://inveniordm.docs.cern.ch/install/)
for further installation options.### Update dependencies
To update dependencies you need to run `pipenv lock` in the target deployment
environment:```shell
# 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
```