{"id":20329084,"url":"https://github.com/affix/fas","last_synced_at":"2026-05-11T14:33:20.263Z","repository":{"id":2054326,"uuid":"2992198","full_name":"affix/fas","owner":"affix","description":"A clone of the Fedora Account System","archived":false,"fork":false,"pushed_at":"2011-12-13T23:55:45.000Z","size":3042,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-04T11:47:32.616Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://fedorahosted.org/fas/","language":"Python","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/affix.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-12-16T02:49:34.000Z","updated_at":"2013-10-11T16:43:21.000Z","dependencies_parsed_at":"2022-07-18T08:13:19.904Z","dependency_job_id":null,"html_url":"https://github.com/affix/fas","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/affix/fas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/affix%2Ffas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/affix%2Ffas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/affix%2Ffas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/affix%2Ffas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/affix","download_url":"https://codeload.github.com/affix/fas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/affix%2Ffas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32899038,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-10T13:40:02.631Z","status":"online","status_checked_at":"2026-05-11T02:00:05.975Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-14T20:09:18.522Z","updated_at":"2026-05-11T14:33:20.239Z","avatar_url":"https://github.com/affix.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"=====================\nFedora Account System\n=====================\n\n:Authors: Ricky Zhou\n\t  Mike McGrath\n\t  Toshio Kuratomi\n\t  Yaakov Nemoy\n:Contact: infrastructure@lists.fedoraproject.org\n:Date: Wed, 26 March, 2008\n:For FAS version: 0.8.x\n\nThe Fedora Account System holds information on Fedora Contributors to give\nthem access to the wonderful things that Fedora has.\n\n.. contents::\n\nThis is a TurboGears_ project. It can be started by running the start-fas\nscript.\n\n.. _TurboGears: http://www.turbogears.org\n\n---------\nUpgrading\n---------\n\n0.8.7 =\u003e 0.8.8\n==============\nWe still haven't worked out using migrate scripts on our database servers so\nthe changes here need to be done like this:\n\n  sudo -u postgres psql fas2 \u003c updates/fas2-0.8.7_to_0.8.8.sql\n\n0.8.5 =\u003e future\n===============\n\nFrom 0.8.5 and onward we will be using SQLAlchemy Migrate to handle database\nupgrades.  To use it, it assumes you have already installed fas2.sql into your\nposgresql database. The instructions for installing SQLAlchemy-Migrate on top\ncan be found below in the installation instructions.  \n\nsqlalchemy-migrate will need to be installed.  To do so, run:\n\n sudo yum -y install python-migrate\n\n(Since I don't trust this yet,  the latest change will need to add:\n+    invite_only BOOLEAN DEFAULT FALSE,\nto the groups table.  There is a migrate script checked in.  Need to verify\nthat it works and that we'll do that.)\n\n0.8.4 =\u003e 0.8.5\n==============\n\nWhen upgrading to 0.8.5 the database schema changed slightly.  The configs\ntable now has a unique constraint to prevent duplicates being entered.  Use\nthis to update your existing schema::\n\n  sudo -u postgres psql fas2 \u003c updates/fas2-0.8.4_to_0.8.5.sql\n\n0.8.3 =\u003e 0.8.4\n==============\n\nWhen upgrading from 0.8.3 to 0.8.4 there are some new database changes:\n\n  :groups.url: URL where others can look for information about the group\n  :groups.mailing_list: Specify a mailing list address that others can use to\n  \tcontact the group\n  :groups.mailing_list_url: A url where others can look at list archives and\n  \tsign up\n  :groups.irc_network: IRC network on which the IRC channel is\n  :groups.irc_channel: IRC channel where communication with the group occurs\n  :people.country_code: Two digit country code for where the user is from\n  :user_group: View that allows mod_auth_pgsql to work with the db\n  :session: Table for doing OpenID sessions.\n\nYou can add these to your database by running the sql commands in\n``updates/fas2-0.8.3_to_0.8.4.sql`` like this::\n\n  sudo -u postgres psql fas2 \u003c updates/fas2-0.8.3_to_0.8.4.sql\n\nThe country code functionality also makes use of python-GeoIP.  This should\nbe installed as a dependency if you use the fas rpms.  Otherwise you need to\ninstall that manually::\n\n  sudo yum -y install python-GeoIP\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faffix%2Ffas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faffix%2Ffas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faffix%2Ffas/lists"}