-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
50 changed files
with
792,672 additions
and
790 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Ignore local virtualenv (if present) | ||
.venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Dockerfile that builds the InvenioRDM Starter Docker image. | ||
ARG BUILDPLATFORM=linux/amd64 | ||
FROM --platform=$BUILDPLATFORM registry.cern.ch/inveniosoftware/almalinux:1 | ||
|
||
COPY site ./site | ||
COPY Pipfile Pipfile.lock ./ | ||
RUN pipenv install --deploy --system | ||
|
||
COPY ./docker/uwsgi/ ${INVENIO_INSTANCE_PATH} | ||
COPY ./invenio.cfg ${INVENIO_INSTANCE_PATH} | ||
COPY ./templates/ ${INVENIO_INSTANCE_PATH}/templates/ | ||
COPY ./app_data/ ${INVENIO_INSTANCE_PATH}/app_data/ | ||
COPY ./translations/ ${INVENIO_INSTANCE_PATH}/translations/ | ||
COPY ./ . | ||
|
||
RUN cp -r ./static/. ${INVENIO_INSTANCE_PATH}/static/ && \ | ||
cp -r ./assets/. ${INVENIO_INSTANCE_PATH}/assets/ && \ | ||
invenio collect --verbose && \ | ||
invenio webpack buildall | ||
|
||
ENTRYPOINT [ "bash", "-c"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
check-manifest = ">=0.25" | ||
|
||
[packages] | ||
invenio-app-rdm = {extras = ["postgresql", "opensearch2"], version = "~=12.0.0b3.dev3"} | ||
invenio-rdm-starter = {editable="True", path="./site"} | ||
"SQLAlchemy[asyncio]" = ">=1.4.41" | ||
uwsgi = ">=2.0" | ||
uwsgitop = ">=0.11" | ||
uwsgi-tools = ">=1.1.1" | ||
|
||
[requires] | ||
python_version = "3.9" | ||
|
||
[pipenv] | ||
allow_prereleases = false |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# README | ||
|
||
Place in this directory the subdirectories containing application data. | ||
|
||
For example, you can create the `vocabularies/` folder to hold | ||
your custom controlled vocabularies. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
subjects: | ||
pid-type: sub | ||
schemes: | ||
- id: FOS | ||
name: Fields of Science and Technology | ||
uri: "http://www.oecd.org/science/inno/38235147.pdf" | ||
data-file: vocabularies/subjects_oecd_fos.yaml | ||
# Minimimal example vocabularies | ||
# can be used for quick testing, or a basis for building your own customized vocabularies. | ||
#names: | ||
# pid-type: names | ||
# data-file: vocabularies/names.yaml | ||
#licenses: | ||
# pid-type: lic | ||
# data-file: vocabularies/cc_licences.csv | ||
#languages: | ||
# pid-type: lng | ||
# data-file: vocabularies/languages.yaml | ||
# TODO: Uncoment this if you want to have all affiliations with ROR identifiers. | ||
# affiliations: | ||
# pid-type: aff | ||
# schemes: | ||
# - id: ROR | ||
# name: Research Organization Registry | ||
# uri: "https://ror.org/" | ||
# data-file: vocabularies/affiliations_ror.yaml |
Oops, something went wrong.