{"id":33235529,"url":"https://github.com/soulfind-dev/soulfind","last_synced_at":"2026-05-10T20:13:04.383Z","repository":{"id":153479517,"uuid":"82344147","full_name":"soulfind-dev/soulfind","owner":"soulfind-dev","description":"Soulseek server implementation in D","archived":false,"fork":false,"pushed_at":"2026-01-17T23:06:58.000Z","size":1022,"stargazers_count":38,"open_issues_count":7,"forks_count":4,"subscribers_count":5,"default_branch":"master","last_synced_at":"2026-01-18T16:36:50.209Z","etag":null,"topics":["d","dlang","p2p","portable","server","soulseek","testing"],"latest_commit_sha":null,"homepage":"","language":"D","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/soulfind-dev.png","metadata":{"files":{"readme":"README.md","changelog":"NEWS.md","contributing":null,"funding":null,"license":"COPYING","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-02-17T22:36:03.000Z","updated_at":"2026-01-17T23:05:25.000Z","dependencies_parsed_at":"2024-12-16T13:28:12.785Z","dependency_job_id":"641b4312-808d-4baf-97e8-8d440c9b9f4e","html_url":"https://github.com/soulfind-dev/soulfind","commit_stats":null,"previous_names":["soulfind-dev/soulfind"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/soulfind-dev/soulfind","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulfind-dev%2Fsoulfind","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulfind-dev%2Fsoulfind/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulfind-dev%2Fsoulfind/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulfind-dev%2Fsoulfind/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/soulfind-dev","download_url":"https://codeload.github.com/soulfind-dev/soulfind/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/soulfind-dev%2Fsoulfind/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28620572,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T23:49:58.628Z","status":"ssl_error","status_checked_at":"2026-01-20T23:47:29.996Z","response_time":117,"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":["d","dlang","p2p","portable","server","soulseek","testing"],"created_at":"2025-11-16T18:00:34.508Z","updated_at":"2026-05-10T20:13:04.376Z","avatar_url":"https://github.com/soulfind-dev.png","language":"D","funding_links":[],"categories":["CLI Applications"],"sub_categories":[],"readme":"# ❤️ Soulfind\n\nSoulseek server implementation in D\n\nNote that Soulfind exists for local testing, and should not be used in\nproduction.\n\n\n## Download\n\n### Binaries\n\nThe [Releases](https://github.com/soulfind-dev/soulfind/releases) page contains\nprecompiled binaries for Linux, FreeBSD, OpenBSD, Windows and macOS. This\nincludes the server itself (`soulfind`), as well as the CLI server management\ntool (`soulsetup`).\n\n### Container Image\n\nIf you prefer using containers, an image is available in the GitHub Container\nRegistry. Start by pulling the image:\n\n```\ndocker pull ghcr.io/soulfind-dev/soulfind\n```\n\nFinally, create and run the container:\n\n```\ndocker run -d --name soulfind -v soulfind-data:/data -p 2242:2242 ghcr.io/soulfind-dev/soulfind\n```\n\nYou can run the `soulsetup` CLI server management tool separately:\n\n```\ndocker run -it -v soulfind-data:/data --rm ghcr.io/soulfind-dev/soulfind soulsetup\n```\n\n\u003e [!IMPORTANT]\n\u003e If you change the listening port with `soulsetup`, recreate the container\n\u003e using the `docker run` command, substituting `2242` with the new port.\n\u003e Remember to remove the existing container first.\n\n\n## Building\n\n[BUILDING.md](BUILDING.md) contains instructions on how to compile Soulfind\nfrom source.\n\n\n## Configuration\n\nSoulfind stores all its configuration in a SQLite database, and looks for the\nfile `soulfind.db` by default, unless provided a different path as a\n`--database` argument. See [Database File](#database-file) under runtime\noptions.\n\nServer owners can configure the server and add admins using the `soulsetup`\nCLI server management tool. The main database can be backed up safely by\nproviding a target file path as a `--backup` argument when running `soulsetup`.\nSee [Backup File](#backup-file) under runtime options.\n\nAdmins can interact with the server from a Soulseek client, by sending commands\nto the `server` user in a private chat (`help` to see all commands).\n\n### Default Configuration\n\n - port: `2242`\n - max_users: `100000`\n - private_mode: `false`\n - motd: `Soulfind \u003cversion\u003e`\n\n\n## Runtime Options\n\n### Database File\n\nUse a different path for the database file by providing a `-d` or `--database`\nargument:\n\n```\nsoulfind -d path/to/database.db\n```\n\n```\nsoulsetup -d path/to/database.db\n```\n\n### Backup File\n\nBack up the main database file to a target path by providing `soulsetup` a `-b`\nor `--backup` argument. This is useful for automatic backups using e.g. a cron\njob, and is safe even while the database is in use.\n\n```\nsoulsetup -b path/to/save/backup.db\n```\n\n### Listening Port\n\nAlways enforce a specific listening port by providing a `-p` or `--port`\nargument:\n\n```\nsoulfind -p 1234\n```\n\n### Debug Logging\n\nEnable detailed debug logging by providing the `--debug` flag:\n\n```\nsoulfind --debug\n```\n\n```\nsoulsetup --debug\n```\n\n\n## Authors\n\nSoulfind is free and open source software, released under the terms of the\n[GNU General Public License v3.0 or later](https://www.gnu.org/licenses/gpl-3.0-standalone.html).\n\nPeople who have contributed to Soulfind:\n\n - seeschloss (creator)\n - mathiascode\n - slook\n\n© 2005–2026 Soulfind Contributors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoulfind-dev%2Fsoulfind","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsoulfind-dev%2Fsoulfind","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsoulfind-dev%2Fsoulfind/lists"}