{"id":34627651,"url":"https://github.com/instarchiver/instarchiver-backend","last_synced_at":"2026-04-08T18:03:25.920Z","repository":{"id":312806695,"uuid":"1045466675","full_name":"instarchiver/instarchiver-backend","owner":"instarchiver","description":"Instagram Data Archiver","archived":false,"fork":false,"pushed_at":"2026-04-06T02:43:22.000Z","size":825,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-06T04:32:41.788Z","etag":null,"topics":["celery","celerybeat","django","django-rest-framework","nginx","postgresql","redis"],"latest_commit_sha":null,"homepage":"https://api.instarchiver.net","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/instarchiver.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":"2025-08-27T08:07:47.000Z","updated_at":"2026-04-06T02:43:02.000Z","dependencies_parsed_at":"2026-01-14T11:02:33.403Z","dependency_job_id":null,"html_url":"https://github.com/instarchiver/instarchiver-backend","commit_stats":null,"previous_names":["animemoeus/instarchiver-backend","instarchiver/instarchiver-backend"],"tags_count":106,"template":false,"template_full_name":null,"purl":"pkg:github/instarchiver/instarchiver-backend","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instarchiver%2Finstarchiver-backend","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instarchiver%2Finstarchiver-backend/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instarchiver%2Finstarchiver-backend/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instarchiver%2Finstarchiver-backend/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/instarchiver","download_url":"https://codeload.github.com/instarchiver/instarchiver-backend/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/instarchiver%2Finstarchiver-backend/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31567229,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"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":["celery","celerybeat","django","django-rest-framework","nginx","postgresql","redis"],"created_at":"2025-12-24T16:10:08.203Z","updated_at":"2026-04-08T18:03:25.913Z","avatar_url":"https://github.com/instarchiver.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Instarchiver Backend\n\nWelcome to Instarchiver Backend, the Django REST API for archiving Instagram content. Yes, another backend project—because the world clearly needed one more.\n\n[![codecov](https://codecov.io/github/instarchiver/instarchiver-backend/graph/badge.svg?token=qLvch7qoAF)](https://codecov.io/github/instarchiver/instarchiver-backend)\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[![Uptime Robot status](https://img.shields.io/uptimerobot/status/m801829955-01095d331ccf91d3ab2297bc)](https://stats.uptimerobot.com/GKy6liBGw7/801829955)\n[![Uptime Robot ratio (7 days)](https://img.shields.io/uptimerobot/ratio/7/m801829955-01095d331ccf91d3ab2297bc)](https://stats.uptimerobot.com/GKy6liBGw7/801829955)\n\nLicense: MIT (because why not?)\n\n## Local Setup (Docker Only)\n\nSo you want to run this locally? Great! But don’t even think about skipping Docker. If you’re allergic to containers, this probably isn’t the project for you.\n\n### Prerequisites\n\n- Docker \u0026 Docker Compose (seriously, just install them)\n\n### Getting Started\n\nOpen your terminal (yes, the scary black window) and run:\n\n```bash\ndocker-compose -f docker-compose.local.yml up\n```\n\nIf you see errors, try turning it off and on again. Or, you know, read the error message.\n\nServices will magically appear at:\n\n- **Django app**: http://localhost:8000\n- **API Documentation**: http://localhost:8000/docs/\n- **Admin Interface**: http://localhost:8000/admin/\n\n## Common Docker Compose Tasks\n\nBecause you’ll probably forget these commands, here they are (again):\n\n### 1. Build Images (when you break something or update dependencies)\n\n```bash\ndocker-compose -f docker-compose.local.yml build\n```\n\n### 2. Start All Services (in case you closed everything by accident)\n\n```bash\ndocker-compose -f docker-compose.local.yml up\n```\n\n### 3. Run Database Migrations (Django loves migrations, trust us)\n\nOpen a new terminal (yes, another one):\n\n```bash\ndocker-compose -f docker-compose.local.yml run --rm django python manage.py migrate\n```\n\n### 4. Create Admin User (so you can actually log in)\n\n```bash\ndocker-compose -f docker-compose.local.yml run --rm django python manage.py createsuperuser\n```\n\nNow, go to http://localhost:8000/admin/ and pretend you’re in charge.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finstarchiver%2Finstarchiver-backend","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finstarchiver%2Finstarchiver-backend","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finstarchiver%2Finstarchiver-backend/lists"}