{"id":29101119,"url":"https://github.com/zodman/djangobytes","last_synced_at":"2025-06-28T19:09:11.623Z","repository":{"id":11436775,"uuid":"13892368","full_name":"zodman/DjangoBytes","owner":"zodman","description":"new and improved BitTorrent tracker based on django","archived":false,"fork":false,"pushed_at":"2013-10-26T23:57:07.000Z","size":659,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-25T04:45:55.013Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://djangobytes.org","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zodman.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-10-26T22:46:43.000Z","updated_at":"2024-09-11T07:39:46.000Z","dependencies_parsed_at":"2022-09-22T22:50:46.996Z","dependency_job_id":null,"html_url":"https://github.com/zodman/DjangoBytes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zodman/DjangoBytes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zodman%2FDjangoBytes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zodman%2FDjangoBytes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zodman%2FDjangoBytes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zodman%2FDjangoBytes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zodman","download_url":"https://codeload.github.com/zodman/DjangoBytes/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zodman%2FDjangoBytes/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262482452,"owners_count":23318141,"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":"2025-06-28T19:08:50.120Z","updated_at":"2025-06-28T19:09:11.601Z","avatar_url":"https://github.com/zodman.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image::\n   https://github.com/kanadezwo/DjangoBytes/raw/master/res/djangobytes-logo.png\n\n:Version: 0.1.0\n:Keywords: djangobytes, django, bittorrent, tracker, alt, python\n\nDjangoBytes is a new and improved BitTorrent tracker based on Django.\n\nLicense (MIT)\n=============\n\nCopyright (C) 2011 Dominic Miglar and Angelo Gründler\n\nPermission is hereby granted, free of charge, to any person obtaining a\ncopy of this software and associated documentation files (the \"Software\"),\nto deal in the Software without restriction, including without limitation\nthe rights to use, copy, modify, merge, publish, distribute, sublicense,\nand/or sell copies of the Software, and to permit persons to whom the\nSoftware is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL\nTHE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n\nVersioning\n==========\n\nReleases will be numbered with the follow format::\n\n    \u003cmajor\u003e.\u003cminor\u003e.\u003cpatch\u003e\n\nAnd constructed with the following guidelines:\n\n* Breaking backwards compatibility bumps the major\n* New additions without breaking backwards compatibility bumps the minor\n* Bug fixes and misc changes bump the patch\n\nWe use even stable odd unstable versioning, e.g. 0.1 would be unstable whereas \n0.2 would be stable.\n\nBug tracker\n===========\n\nIf you have any suggestions, bug reports or annoyances please report them\nto our issue tracker at http://github.com/kanadezwo/DjangoBytes/issues.\n\nInstallation (development)\n==========================\n\nCreate a virtualenv::\n\n    virtualenv --python=python2.7 dev\n    source dev/bin/activate\n\nInstall all dependencies::\n\n    pip install bjoern django pil pysqlite\n\nRun DjangoBytes\n---------------\n\nIt's simple and easy::\n\n    source dev/bin/activate\n    python djangobytes/manage.py syncdb\n    python djangobytes/run_bjoern.py 127.0.0.1 22446\n\nDjangoBytes is now running on http://127.0.0.1:22446/.\n\nNginx (SSL)\n-----------\n\nIt's also simple and easy::\n\n    server {\n            listen 80;\n            server_name yourdomain.tdl;\n            rewrite     ^(.*)   https://$server_name$1 permanent;\n    }\n\n    server {\n            listen 443;\n            ssl                  on;\n            ssl_certificate      /path/to/your/cert.crt;\n            ssl_certificate_key  /path/to/your/cert.key;\n            server_name yourdomain.tdl;\n            location / {\n                    proxy_pass http://127.0.0.1:22446;\n                    proxy_redirect off;\n\n                    proxy_set_header Host $host;\n                    proxy_set_header X-Real-IP $remote_addr;\n                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n                    proxy_set_header X-Forwarded-Protocol https;\n\n                    client_max_body_size 10m;\n                    client_body_buffer_size 128k;\n\n                    proxy_connect_timeout 90;\n                    proxy_send_timeout 90;\n                    proxy_read_timeout 90;\n\n                    proxy_buffer_size 4k;\n                    proxy_buffers 4 32k;\n                    proxy_busy_buffers_size 64k;\n                    proxy_temp_file_write_size 64k;\n            }\n    }\n\n\nInitial setup\n-------------\n\nYou can start with the initial setup at https://ip:port/board/config/setup.\n\nProduction Deployments\n======================\n\nThe following BitTorrent-Trackers are powered by DjangoBytes:\n\n.. image::\n   https://github.com/kanadezwo/DjangoBytes/raw/master/res/serverkiller-logo.png\n\nContact\n=======\n\nIRC\n---\n\nWe reside on irc.freenode.net in channel ``#djangobytes``.\n\nThanks\n======\n\nThanks to Bernhard Posselt, who has helped us to fix various problems.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzodman%2Fdjangobytes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzodman%2Fdjangobytes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzodman%2Fdjangobytes/lists"}