{"id":18246245,"url":"https://github.com/mfcovington/djangocms-genome-browser","last_synced_at":"2025-04-04T14:31:12.739Z","repository":{"id":31041794,"uuid":"34600431","full_name":"mfcovington/djangocms-genome-browser","owner":"mfcovington","description":"A Django app for incorporating a Dalliance genome browser into a Django site with django CMS-specific features","archived":false,"fork":false,"pushed_at":"2016-02-09T05:16:00.000Z","size":41,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-03-20T14:40:26.941Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/mfcovington/djangocms-genome-browser/releases/download/0.1.1/djangocms-genome-browser-0.1.1.tar.gz","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mfcovington.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-26T06:18:10.000Z","updated_at":"2023-06-25T13:06:55.000Z","dependencies_parsed_at":"2022-07-19T21:59:39.946Z","dependency_job_id":null,"html_url":"https://github.com/mfcovington/djangocms-genome-browser","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjangocms-genome-browser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjangocms-genome-browser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjangocms-genome-browser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mfcovington%2Fdjangocms-genome-browser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mfcovington","download_url":"https://codeload.github.com/mfcovington/djangocms-genome-browser/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247193963,"owners_count":20899401,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-05T09:25:06.370Z","updated_at":"2025-04-04T14:31:12.380Z","avatar_url":"https://github.com/mfcovington.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"************************\ndjangocms-genome-browser\n************************\n\n``djangocms-genome-browser`` is a Django app for incorporating a Dalliance genome browser into a Django site with django CMS-specific features.\n\nSource code is available on GitHub at `mfcovington/djangocms-genome-browser \u003chttps://github.com/mfcovington/djangocms-genome-browser\u003e`_. Information about and source code for the Dalliance genome browser are available on `Biodalliance \u003chttp://www.biodalliance.org/index.html\u003e`_ and `GitHub \u003chttps://github.com/dasmoth/dalliance\u003e`_, respectively.\n\n.. contents:: :local:\n\n\nInstallation\n============\n\n**GitHub (development branch)**\n\n.. code-block:: sh\n\n    pip install git+http://github.com/mfcovington/djangocms-genome-browser.git@develop\n\n\nConfiguration\n=============\n\n- `Install django CMS and start a project \u003chttp://docs.django-cms.org/en/latest/introduction/install.html\u003e`_, if one doesn't already exist.\n\n  - Unless you use this app as part of `djangocms-lab-site \u003chttps://github.com/mfcovington/djangocms-lab-site\u003e`_ or plan to style the app from scratch, you will want to choose the ``Use Twitter Bootstrap Theme`` option (when running ``djangocms``) and then edit the resulting ``templates/base.html``. This will add style that looks like Bootstrap 2. To use Bootstrap 3 styling, remove the following line for the ``bootstrap-theme.min.css`` stylesheet from ``templates/base.html``:\n\n    .. code-block:: python\n\n        \u003clink rel=\"stylesheet\" href=\"https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.x.x/css/bootstrap-theme.min.css\"\u003e\n\n\n- Do the following in ``settings.py``:\n\n  - Add ``cms_genome_browser`` and its dependencies to ``INSTALLED_APPS``:\n\n    .. code-block:: python\n\n        INSTALLED_APPS = (\n            # ...\n            'cms_genome_browser',\n            'easy_thumbnails',\n            'filer',\n            'mptt',\n        )\n\n\n  - Add ``easy_thumbnail`` settings: \n\n    .. code-block:: python\n\n        # For easy_thumbnails to support retina displays (recent MacBooks, iOS)\n        THUMBNAIL_HIGH_RESOLUTION = True\n        THUMBNAIL_QUALITY = 95\n        THUMBNAIL_PROCESSORS = (\n            'easy_thumbnails.processors.colorspace',\n            'easy_thumbnails.processors.autocrop',\n            'filer.thumbnail_processors.scale_and_crop_with_subject_location',\n            'easy_thumbnails.processors.filters',\n        )\n        THUMBNAIL_PRESERVE_EXTENSIONS = ('png', 'gif')\n        THUMBNAIL_SUBDIR = 'versions'\n\n\nMigrations\n==========\n\nCreate and perform ``cms_genome_browser`` migrations:\n\n.. code-block:: sh\n\n    python manage.py makemigrations cms_genome_browser\n    python manage.py migrate\n\n\nUsage\n=====\n\n- Start the development server:\n\n.. code-block:: sh\n\n    python manage.py runserver\n\n\n- Visit: ``http://127.0.0.1:8000/``\n- Create a CMS page.\n- Attach the ``Genome Browser App`` under ``Advanced Settings`` for the page.\n\n\n*Version 0.1.1*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfcovington%2Fdjangocms-genome-browser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmfcovington%2Fdjangocms-genome-browser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmfcovington%2Fdjangocms-genome-browser/lists"}