{"id":17928502,"url":"https://github.com/alifeee/polycule-visualiser","last_synced_at":"2026-02-18T18:01:12.430Z","repository":{"id":245024469,"uuid":"817036016","full_name":"alifeee/polycule-visualiser","owner":"alifeee","description":"A polycule graph visualiser designed to be self-hosted.","archived":false,"fork":false,"pushed_at":"2025-04-10T12:30:21.000Z","size":934,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-22T11:13:59.733Z","etag":null,"topics":["graph","network","polyamory","polycule","self-hosted","springy","undirected-graph"],"latest_commit_sha":null,"homepage":"http://alifeee.github.io/polycule-visualiser/","language":"JavaScript","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/alifeee.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}},"created_at":"2024-06-18T22:23:41.000Z","updated_at":"2025-11-17T14:55:03.000Z","dependencies_parsed_at":"2025-02-09T00:31:05.567Z","dependency_job_id":"9f9c86ae-a57a-45e6-a6bd-a3b74012a281","html_url":"https://github.com/alifeee/polycule-visualiser","commit_stats":null,"previous_names":["alifeee/polycule-visualiser"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alifeee/polycule-visualiser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alifeee%2Fpolycule-visualiser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alifeee%2Fpolycule-visualiser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alifeee%2Fpolycule-visualiser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alifeee%2Fpolycule-visualiser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alifeee","download_url":"https://codeload.github.com/alifeee/polycule-visualiser/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alifeee%2Fpolycule-visualiser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29588776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T16:55:40.614Z","status":"ssl_error","status_checked_at":"2026-02-18T16:55:37.558Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["graph","network","polyamory","polycule","self-hosted","springy","undirected-graph"],"created_at":"2024-10-28T21:03:33.334Z","updated_at":"2026-02-18T18:01:12.411Z","avatar_url":"https://github.com/alifeee.png","language":"JavaScript","readme":"# Polycule Visualiser\n\nA graph visualiser designed to be self-hosted, using [Springy]\n\nSee a non-editable example → \u003chttp://alifeee.co.uk/polycule-visualiser/\u003e\n\n![GIF of graph moving in a spring-like motion](./images/cule.gif)\n\nThe graph is defined by YAML:\n\n```yaml\nnodes:\n  - name: Seraphina\n  - name: Elfo\n  - name: France\nedges:\n  - from: Seraphina\n    to: Elfo\n  - from: Elfo\n    to: France\n    type: dashed\n```\n\n## How to use locally\n\n1. Download the files ([as a zip](https://github.com/alifeee/polycule-visualiser/archive/refs/heads/main.zip)) and extract to a folder\n1. open `index.html` with a text editor (Notepad/etc)\n1. edit the polycule at the top of the file\n1. open (double click or open in browser) `index.html`\n\n## How to install on a server with editing\n\n```bash\nmkdir -p /var/www/\ngit clone git@github.com:alifeee/polycule-visualiser /var/www/polycule\ncd /var/www/polycule\n\ncp .env.example .env\ncp polycule.yaml.example polycule.yaml\n# We change the ownership of the built files, so that the www-data user can change them later.\nsudo chown $USER:www-data polycule.yaml\n\n# Generate a password file for the site\nsudo htpasswd -c /etc/nginx/polycule.htpasswd \u003cnew_user\u003e\n```\n\nAdd the following to nginx config (using `fastcgi`)\n\n```nginx\nlocation /polycule/ {\n    alias /usr/alifeee/polycule/;\n    try_files $uri $uri/ =404;\n\n    auth_basic_user_file /etc/nginx/polycule.htpasswd;\n    auth_basic \"polycule\";\n}\nlocation ~ ^(/polycule/edit|/polycule/rss) {\n    fastcgi_intercept_errors on;\n    include fastcgi_params;\n    fastcgi_param SCRIPT_FILENAME /usr/alifeee$fastcgi_script_name;\n    fastcgi_pass unix:/var/run/fcgiwrap.socket;\n\n    auth_basic_user_file /var/www/polycule/.htpasswd;\n    auth_basic \"polycule\";\n}\n```\n\n[Springy]: http://getspringy.com/\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falifeee%2Fpolycule-visualiser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falifeee%2Fpolycule-visualiser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falifeee%2Fpolycule-visualiser/lists"}