{"id":23920757,"url":"https://github.com/phazonoverload/theyworkforgoldsu","last_synced_at":"2026-02-11T01:34:12.873Z","repository":{"id":118449706,"uuid":"127447383","full_name":"phazonoverload/theyworkforgoldsu","owner":"phazonoverload","description":"Making the actions of elected officials at Goldsmiths Students' Union more accessible and transparent.","archived":false,"fork":false,"pushed_at":"2018-04-18T11:09:14.000Z","size":639,"stargazers_count":1,"open_issues_count":17,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-31T05:59:46.868Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://theyworkforgoldsu.com","language":"HTML","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/phazonoverload.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-03-30T16:07:13.000Z","updated_at":"2025-08-06T20:51:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"38783c09-6d59-4e95-a7ce-1697cb8a45a5","html_url":"https://github.com/phazonoverload/theyworkforgoldsu","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phazonoverload/theyworkforgoldsu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phazonoverload%2Ftheyworkforgoldsu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phazonoverload%2Ftheyworkforgoldsu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phazonoverload%2Ftheyworkforgoldsu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phazonoverload%2Ftheyworkforgoldsu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phazonoverload","download_url":"https://codeload.github.com/phazonoverload/theyworkforgoldsu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phazonoverload%2Ftheyworkforgoldsu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29324258,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T00:34:26.354Z","status":"ssl_error","status_checked_at":"2026-02-11T00:34:09.494Z","response_time":65,"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":"2025-01-05T15:53:40.466Z","updated_at":"2026-02-11T01:34:12.868Z","avatar_url":"https://github.com/phazonoverload.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# The Work For GoldSU\n\nBorn from a desire to better understand how promises are carried through, They Work For GoldSU is a platform for elected officials at Goldsmiths Students' Union to keep a meaningful log of their progress throughout the year.\n\nThe platform will be prepopulated with the manifesto promises of the 2017-2018 full-time and part-time officers, and give them the opportunity to log progress of each promise along with a completion percentage as they see it (with anything less than 100% meaning they did not manage to complete the task).\n\nThis project is inspired by [MySociety's](https://www.mysociety.org) [TheyWorkForYou](https://www.theyworkforyou.com/) project, which aims to keep elected MPs accountable. It is built as coursework for IS52027C: Data, Networks and the Web (2017-18).\n\n## License: (CC) BY-SA 4.0\n\nThis work is licensed under the [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/).\n\n## Setting up project first time\n\nBefore you start, make sure you have Python and pip installed, along with [virtualenv](https://virtualenv.pypa.io/en/stable/installation/).\n\nThe first step is to `git clone` this repository. Once you've done that navigate to the newly-downloaded folder in your terminal and run the following commands:\n\n```\n# Setup a new virtual environment and install dependencies\n$ virtualenv venv venv\n$ source venv/bin/activate\n$ pip install -r requirements.txt\n\n\n# Set up database\n$ export FLASK_APP=main.py\n$ flask db upgrade\n```\n\n## Running project\n\n```\n# Enable virtualenv if you killed your terminal instance since the last time you ran this command\n$ source venv/bin/activate\n\n\n# Set environment variable, expose the entry point of our Flask app and run it\n$ export FLASK_APP=main.py\n$ export FLASK_DEBUG=1\n$ export PASSPHRASE=passphrase\n$ export ADMIN_PASS=admin\n$ flask run\n```\n\nThis sets the registration passphrase to 'passphrase' and the administration passhrase to 'admin'\n\n## Deploying project\n\nI have hosted this projecton Heroku's Hobbiest Tier. Here is how...\n\n1. Clone this repo and ensure you have the Heroku CLI installed\n2. `heroku login`\n3. `heroku apps:create YourHerokuAppName`\n4. `heroku addons:add heroku-postgresql:hobby-dev`\n5. `heroku config:set FLASK_APP=main.py`\n6. `git push heroku master`\n\nGo into your Heroku admin panel, head to the application you created and go to the settings tab. Reveal the config vars, and set the following vars:\n\n* FLASK_APP to main.py\n* PASSPHRASE to your registration passphrase\n* ADMIN_PASS to your administration passphrase\n\nWhen you want to deploy updates, create a new git commit and run the final git push command again.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphazonoverload%2Ftheyworkforgoldsu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphazonoverload%2Ftheyworkforgoldsu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphazonoverload%2Ftheyworkforgoldsu/lists"}