https://github.com/acdh-oeaw/nabucco

NaBuCCo - A Neo-Babylonian Cuneiform Corpus

https://github.com/acdh-oeaw/nabucco

Science Score: 13.0%

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

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

Keywords

djangobaseproject
Last synced: 10 months ago · JSON representation

Repository

NaBuCCo - A Neo-Babylonian Cuneiform Corpus

Basic Info
Statistics
  • Stars: 1
  • Watchers: 6
  • Forks: 0
  • Open Issues: 3
  • Releases: 50
Topics
djangobaseproject
Created almost 5 years ago · Last pushed 10 months ago
Metadata Files
Readme Changelog License

README.md

flake8 Lint Build and push to DockerHub codecov

nabucco

  • repo to process nabucco xml-data (taken from orig-repo) into something more usabel (csv); be aware, to ease the parsing, I manually removed the namespaces from the original files
  • evolved to application repo for generic nabucco app

install

  • clone the repo git clone https://github.com/acdh-oeaw/nabucco.git
  • change into repo-folder cd nabucco
  • create a virtualenv, e.g. python -m venv venv and activate it source venv/bin/activate
  • install required packages pip install -r requirements.txt
  • create a postgres-db nabucco with user and pw postgres - or modify settings.py or set propper environment variables --> note that with Windows, PostgreSQL13 seems not to work: use version 12
  • run python manage.py makemigrations then python manage.py migrate and python manage.py runserver to migrate database and start the dev server

[!IMPORTANT]
The instructions of how to import data have been removed because the data as well as the related code are no longer part of this code base. The data import routine was only needed in the early stages of the application development.

Docker

building the image

  • docker build -t nabucco:latest .
  • docker build -t nabucco:latest --no-cache .

running the image

To run the image you should provide an .env file to pass in needed environment variables; see nabucco/settings.py for possible varibles:

docker run -it --network="host" --rm --env-file .env nabucco:latest

notes

link Nabucco tablets with LaBaSi

shell python manage.py labasi

Owner

  • Name: Austrian Centre for Digital Humanities & Cultural Heritage
  • Login: acdh-oeaw
  • Kind: organization
  • Email: acdh@oeaw.ac.at
  • Location: Vienna, Austria

GitHub Events

Total
  • Create event: 58
  • Release event: 17
  • Issues event: 113
  • Watch event: 3
  • Delete event: 44
  • Issue comment event: 35
  • Push event: 135
  • Pull request event: 81
Last Year
  • Create event: 58
  • Release event: 17
  • Issues event: 113
  • Watch event: 3
  • Delete event: 44
  • Issue comment event: 35
  • Push event: 135
  • Pull request event: 81

Issues and Pull Requests

Last synced: 10 months ago

All Time
  • Total issues: 85
  • Total pull requests: 67
  • Average time to close issues: 16 days
  • Average time to close pull requests: 1 minute
  • Total issue authors: 4
  • Total pull request authors: 1
  • Average comments per issue: 0.59
  • Average comments per pull request: 0.0
  • Merged pull requests: 61
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 59
  • Pull requests: 66
  • Average time to close issues: 9 days
  • Average time to close pull requests: 1 minute
  • Issue authors: 3
  • Pull request authors: 1
  • Average comments per issue: 0.42
  • Average comments per pull request: 0.0
  • Merged pull requests: 60
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • Augrilium (39)
  • csae8092 (29)
  • pirnr81 (18)
  • megamattc (1)
Pull Request Authors
  • csae8092 (79)
Top Labels
Issue Labels
datamodel (16) enhancement (13) maintenance (3) bug (2) documentation (1)
Pull Request Labels

Dependencies

requirements.txt pypi
  • Django ==3.2.7
  • acdh-django-browsing *
  • acdh-django-netvis ==3.1.0
  • acdh-xml-pyutils ==0.4.0
  • django-ckeditor ==6.2.0
  • django-mptt >=0.13.4
  • jinja2 >=3.0.1
  • pandas >=1.3.3,<1.5
  • psycopg2-binary ==2.9.1
  • tqdm >=4.62
requirements_test.txt pypi
  • coverage >=5.5 test
  • flake8 >=3.9 test
.github/workflows/build.yml actions
  • actions/checkout v2 composite
.github/workflows/lint.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v1 composite
  • py-actions/flake8 v1 composite
.github/workflows/test.yml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/setup-python v1 composite
  • codecov/codecov-action v1 composite
  • postgis/postgis 12-master docker
Dockerfile docker
  • python 3.8-buster build