{"id":41883459,"url":"https://github.com/bdunnette/blimp","last_synced_at":"2026-01-25T13:16:49.369Z","repository":{"id":332835090,"uuid":"1135094465","full_name":"bdunnette/blimp","owner":"bdunnette","description":null,"archived":false,"fork":false,"pushed_at":"2026-01-15T18:59:29.000Z","size":283,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-15T20:55:24.208Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bdunnette.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-15T16:21:25.000Z","updated_at":"2026-01-15T18:57:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bdunnette/blimp","commit_stats":null,"previous_names":["bdunnette/blimp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bdunnette/blimp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdunnette%2Fblimp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdunnette%2Fblimp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdunnette%2Fblimp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdunnette%2Fblimp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bdunnette","download_url":"https://codeload.github.com/bdunnette/blimp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdunnette%2Fblimp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28753415,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T10:25:12.305Z","status":"ssl_error","status_checked_at":"2026-01-25T10:25:11.933Z","response_time":113,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2026-01-25T13:16:48.665Z","updated_at":"2026-01-25T13:16:49.360Z","avatar_url":"https://github.com/bdunnette.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BLIMP\n\nBrian's Lab Information Management Phiasco\n\n[![Built with Cookiecutter Django](https://img.shields.io/badge/built%20with-Cookiecutter%20Django-ff69b4.svg?logo=cookiecutter)](https://github.com/cookiecutter/cookiecutter-django/)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\nLicense: MIT\n\n## Settings\n\nMoved to [settings](https://cookiecutter-django.readthedocs.io/en/latest/1-getting-started/settings.html).\n\n## Basic Commands\n\n### Setting Up Your Users\n\n- To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a \"Verify Your E-mail Address\" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.\n\n- To create a **superuser account**, use this command:\n\n      uv run python manage.py createsuperuser\n\nFor convenience, you can keep your normal user logged in on Chrome and your superuser logged in on Firefox (or similar), so that you can see how the site behaves for both kinds of users.\n\n### Type checks\n\nRunning type checks with mypy:\n\n    uv run mypy blimp\n\n### Test coverage\n\nTo run the tests, check your test coverage, and generate an HTML coverage report:\n\n    uv run coverage run -m pytest\n    uv run coverage html\n    uv run open htmlcov/index.html\n\n#### Running tests with pytest\n\n    uv run pytest\n\n### Live reloading and Sass CSS compilation\n\nMoved to [Live reloading and SASS compilation](https://cookiecutter-django.readthedocs.io/en/latest/2-local-development/developing-locally.html#using-webpack-or-gulp).\n\n### Celery\n\nThis app comes with Celery.\n\nTo run a celery worker:\n\n```bash\ncd blimp\nuv run celery -A config.celery_app worker -l info\n```\n\nPlease note: For Celery's import magic to work, it is important _where_ the celery commands are run. If you are in the same folder with _manage.py_, you should be right.\n\nTo run [periodic tasks](https://docs.celeryq.dev/en/stable/userguide/periodic-tasks.html), you'll need to start the celery beat scheduler service. You can start it as a standalone process:\n\n```bash\ncd blimp\nuv run celery -A config.celery_app beat\n```\n\nor you can embed the beat service inside a worker with the `-B` option (not recommended for production use):\n\n```bash\ncd blimp\nuv run celery -A config.celery_app worker -B -l info\n```\n\n### Sentry\n\nSentry is an error logging aggregator service. You can sign up for a free account at \u003chttps://sentry.io/signup/?code=cookiecutter\u003e or download and host it yourself.\nThe system is set up with reasonable defaults, including 404 logging and integration with the WSGI application.\n\nYou must set the DSN url in production.\n\n## Deployment\n\nThe following details how to deploy this application.\n\n### Heroku\n\nSee detailed [cookiecutter-django Heroku documentation](https://cookiecutter-django.readthedocs.io/en/latest/3-deployment/deployment-on-heroku.html).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbdunnette%2Fblimp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbdunnette%2Fblimp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbdunnette%2Fblimp/lists"}