archivematica_gradio

A demonstration of Archivematica and Gradio.

https://github.com/nakamura196/archivematica_gradio

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (5.3%) to scientific vocabulary

Keywords

archivematica gradio python
Last synced: 7 months ago · JSON representation ·

Repository

A demonstration of Archivematica and Gradio.

Basic Info
  • Host: GitHub
  • Owner: nakamura196
  • License: other
  • Language: Python
  • Default Branch: main
  • Homepage: https://amg.aws.ldas.jp
  • Size: 25 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
archivematica gradio python
Created about 2 years ago · Last pushed about 2 years ago
Metadata Files
Readme Funding License Citation

README.md

Archivematica Gradio

A demonstration of Archivematica and Gradio.

🌐 Website

Visit the demo page to try it out.

📖 Preparation

Update src/.env with the following information.

``` DASHBOARDURL=http://localhost:62080 DASHBOARDUSERNAME=test DASHBOARDAPIKEY=test

STORAGESERVICEURL=http://localhost:62081 STORAGESERVICEUSERNAME=test STORAGESERVICEPASSWORD=test

AWSACCESSKEYID=xxxxxxxxxxxxxxxxxxxx AWSSECRETACCESSKEY=xxxxxxxxxxxxxxxxxxxx AWSBUCKETNAME=xxxxxxxxxxxxxxxxxxxx

LOCATIONUUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx PROCESSINGCONFIG=automated TRANSFERTYPE=standard TRANSFERSOURCEPREFIX=transfersource ```

📖 Development

```bash python -m venv .venv source .venv/bin/activate pip install -r src/requirements.txt

docker compose up --build ```

📖 Production

Update docker-compose-prod.yml with the following information.

```yml version: "3.0"

services: gradio: containername: "archivematicagradio" build: . volumes: - ./src:/workspace ports: - "7865:7860" environment: VIRTUALHOST: xxx LETSENCRYPTHOST: xxx LETSENCRYPT_EMAIL: xxx

networks: default: external: name: xxx ```

```bash python -m venv .venv source .venv/bin/activate pip install -r src/requirements.txt

docker compose -f docker-compose-prod.yml up -d --build ```

Owner

  • Name: Satoru Nakamura
  • Login: nakamura196
  • Kind: user

Citation (CITATION.cff)

cff-version: 1.1.0
message: "Cite as"
authors:
  - family-names: Nakamura
    given-names: Satoru
    orcid: https://orcid.org/0000-0001-8245-7925
    website: https://researchmap.jp/nakamura.satoru?lang=en

GitHub Events

Total
Last Year

Issues and Pull Requests

Last synced: about 1 year ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

Dockerfile docker
  • python 3.11 build
docker-compose.yml docker
src/requirements.txt pypi
  • archivematica_tools ==0.0.1
  • gradio ==4.14.0
  • python-dotenv *