{"id":21630003,"url":"https://github.com/mozilla-services/tuxedo","last_synced_at":"2025-07-17T12:32:49.765Z","repository":{"id":49710571,"uuid":"439349","full_name":"mozilla-services/tuxedo","owner":"mozilla-services","description":"INACTIVE - An improved version of Mozilla's download load balancer Bouncer, with a user interface written in Django/Python.","archived":true,"fork":false,"pushed_at":"2021-06-10T17:29:30.000Z","size":1323,"stargazers_count":20,"open_issues_count":0,"forks_count":10,"subscribers_count":23,"default_branch":"master","last_synced_at":"2025-03-29T01:29:09.579Z","etag":null,"topics":["inactive","unmaintained"],"latest_commit_sha":null,"homepage":"https://wiki.mozilla.org/Bouncer","language":"Python","has_issues":true,"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/mozilla-services.png","metadata":{"files":{"readme":"README.md","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":"2009-12-16T15:59:45.000Z","updated_at":"2025-02-03T14:19:38.000Z","dependencies_parsed_at":"2022-08-25T06:20:40.098Z","dependency_job_id":null,"html_url":"https://github.com/mozilla-services/tuxedo","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/mozilla-services/tuxedo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Ftuxedo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Ftuxedo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Ftuxedo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Ftuxedo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mozilla-services","download_url":"https://codeload.github.com/mozilla-services/tuxedo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mozilla-services%2Ftuxedo/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265606727,"owners_count":23796998,"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":["inactive","unmaintained"],"created_at":"2024-11-25T02:09:28.350Z","updated_at":"2025-07-17T12:32:49.402Z","avatar_url":"https://github.com/mozilla-services.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"tuxedo\n======\n\nAn improved version of the [Bouncer](https://wiki.mozilla.org/Bouncer) mirror\nmanagement software.\n\nBouncer is a Mozilla project. The new admin backend was originally written by\nFrederic Wenzel (fwenzel@mozilla.com).\n\nGetting Started\n---------------\n\n### Python\nYou need Python 2.6. Also, you probably want to run this application in a\n[virtualenv][virtualenv] environment.\n\nRun ``easy_install pip`` followed by ``pip install -r requirements.txt``\nto install the required Python libraries.\n\n[virtualenv]: http://pypi.python.org/pypi/virtualenv\n\n### git submodules\nThe list of known languages is provided by ``languages.json`` in the directory\n``inc/product-details/json`` and imported as a [git submodule][git-submodule].\nThe source of the data is the [Mozilla product-details library][prod-details].\n\nTo initialize the submodule (or pull updates from it), run this from the tuxedo\nroot directory:\n\n    git submodule update --init\n\n[git-submodule]: http://www.kernel.org/pub/software/scm/git/docs/git-submodule.html\n[prod-details]: http://svn.mozilla.org/libs/product-details/\n\n\n### Initial Database Setup\nIf you're installing a new copy of Bouncer, run ``./manage.py syncdb``\nfollowed by ``./manage.py migrate`` (see \"Database Migrations\" below).\n\n### Database Migrations\nI am using [South](http://south.aeracode.org/) to keep track of database\nmigrations. ``./manage.py migrate`` will apply these migrations when\nnecessary.\n\n### Upgrading an older version of Bouncer\nIf you are upgrading from an earlier version of Bouncer that isn't locale-\naware yet, apply ``sql/bouncer-add-lang.sql`` first.\n\nThen, apply ``sql/incremental.sql`` to bring the DB up to date.\n\nFinally, run the following steps to initialize Django and South:\n\n    ./manage.py syncdb   # initialize django\n    # (answer \"no\" to the \"add a new admin?\" question)\n    ./manage.py migrate mirror 0001 --fake   # initialize South\n    ./manage.py migrate   # apply all existing migrations\n\nTuxedo API and mod_wsgi\n-----------------------\nThere are multiple ways to deploy a Django project on a web server. If you\nwant to use Apache with mod_wsgi, make sure to set it up so it passes\n[HTTP Basic Auth credentials][userauth] on to the application, otherwise\nthe Tuxedo API won't work.\n\n[userauth]: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#User_Authentication\n\nWhy \"tuxedo\"?\n-------------\nIn my silly mind, I chose to interpret \"Bouncer\" as \"doorman\" and subsequently\ndecided that its new version should be codenamed like what fancy bouncers wear:\na tuxedo.\n\nLicensing\n---------\nThis software is licensed under the [Mozilla Tri-License][MPL]:\n\n    ***** BEGIN LICENSE BLOCK *****\n    Version: MPL 1.1/GPL 2.0/LGPL 2.1\n\n    The contents of this file are subject to the Mozilla Public License Version\n    1.1 (the \"License\"); you may not use this file except in compliance with\n    the License. You may obtain a copy of the License at\n    http://www.mozilla.org/MPL/\n\n    Software distributed under the License is distributed on an \"AS IS\" basis,\n    WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License\n    for the specific language governing rights and limitations under the\n    License.\n\n    The Original Code is tuxedo.\n\n    The Initial Developer of the Original Code is Mozilla.\n    Portions created by the Initial Developer are Copyright (C) 2010\n    the Initial Developer. All Rights Reserved.\n\n    Contributor(s):\n      Frederic Wenzel \u003cfwenzel@mozilla.com\u003e\n\n    Alternatively, the contents of this file may be used under the terms of\n    either the GNU General Public License Version 2 or later (the \"GPL\"), or\n    the GNU Lesser General Public License Version 2.1 or later (the \"LGPL\"),\n    in which case the provisions of the GPL or the LGPL are applicable instead\n    of those above. If you wish to allow use of your version of this file only\n    under the terms of either the GPL or the LGPL, and not to allow others to\n    use your version of this file under the terms of the MPL, indicate your\n    decision by deleting the provisions above and replace them with the notice\n    and other provisions required by the GPL or the LGPL. If you do not delete\n    the provisions above, a recipient may use your version of this file under\n    the terms of any one of the MPL, the GPL or the LGPL.\n\n    ***** END LICENSE BLOCK *****\n\n[MPL]: http://www.mozilla.org/MPL/\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmozilla-services%2Ftuxedo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmozilla-services%2Ftuxedo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmozilla-services%2Ftuxedo/lists"}