{"id":51124594,"url":"https://github.com/quackster/lisbon","last_synced_at":"2026-06-25T06:01:33.506Z","repository":{"id":357037285,"uuid":"926831714","full_name":"Quackster/Lisbon","owner":"Quackster","description":"Project Lisbon, supporting Habbo Hotel v26. Fork of Kepler.","archived":false,"fork":false,"pushed_at":"2026-06-24T12:37:51.000Z","size":195877,"stargazers_count":13,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-06-24T13:21:29.098Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Quackster.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2025-02-03T23:42:35.000Z","updated_at":"2026-06-24T12:37:13.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Quackster/Lisbon","commit_stats":null,"previous_names":["quackster/lisbon"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Quackster/Lisbon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quackster%2FLisbon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quackster%2FLisbon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quackster%2FLisbon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quackster%2FLisbon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Quackster","download_url":"https://codeload.github.com/Quackster/Lisbon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Quackster%2FLisbon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34761847,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-25T02:00:05.521Z","response_time":101,"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":"2026-06-25T06:01:32.233Z","updated_at":"2026-06-25T06:01:33.498Z","avatar_url":"https://github.com/Quackster.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lisbon\n\nLisbon is a Habbo Hotel emulator that is designed to fully emulate the v26 version from 2008 era. \n\nAll the gamedata files can be found [HERE](https://h4bbo.net/archive/dcr_packs/dcr_complete_r26_20080915_0408_7984_61ccb5f8b8797a3aba62c1fa2ca80169.zip).\n\n# Screenshots\n\nWebsite:\n\n\u003cimg width=\"794\" height=\"622\" alt=\"image\" src=\"https://github.com/user-attachments/assets/02a221bf-5f08-4fe9-a68d-5f7da6262ab1\" /\u003e\n\nLogged in:\n\n\u003cimg width=\"1438\" height=\"1018\" alt=\"basilisk_SN5B5EZHaQ\" src=\"https://github.com/user-attachments/assets/ca5cc487-08ea-4b62-9627-4b2d9c4c3f71\" /\u003e\n\nHotel:\n\n\u003cimg width=\"960\" height=\"540\" alt=\"basilisk_h44Zb4dNb6\" src=\"https://github.com/user-attachments/assets/daa685f6-5891-4f88-8783-34d6b135ebfb\" /\u003e\n\n## Linux install\n\nThe Linux installer deploys Lisbon with Java 17, MariaDB, Nginx, the emulator service, the web service, database imports, and systemd units.\n\nRun it on a systemd-based Linux server:\n\n```bash\nsudo ./install-linux.sh --host example.com\n```\n\nUseful options:\n\n```bash\nsudo ./install-linux.sh \\\n  --host example.com \\\n  --db-name lisbon \\\n  --db-user lisbon \\\n  --game-port 30000 \\\n  --mus-port 12322 \\\n  --web-backend-port 8080\n```\n\nAfter installation:\n\n```bash\nsystemctl status lisbon-server lisbon-web nginx mariadb --no-pager\njournalctl -u lisbon-server -f\njournalctl -u lisbon-web -f\n```\n\n## Quick VM test\n\nThe quickest realistic test is a disposable Ubuntu VM with Multipass.\n\nFrom Windows PowerShell:\n\n```powershell\nmultipass launch 24.04 --name lisbon-test --cpus 2 --memory 4G --disk 20G\nmultipass mount C:\\SourceControl\\Lisbon lisbon-test:/src/Lisbon\nmultipass shell lisbon-test\n```\n\nInside the VM:\n\n```bash\ncd /src/Lisbon\nchmod +x install-linux.sh\nsudo ./install-linux.sh --host \"$(hostname -I | awk '{print $1}')\"\n```\n\nCheck the services:\n\n```bash\nsystemctl status lisbon-server lisbon-web nginx mariadb --no-pager\ncurl -I http://localhost/\njournalctl -u lisbon-server -n 100 --no-pager\njournalctl -u lisbon-web -n 100 --no-pager\n```\n\nFrom Windows, get the VM IP:\n\n```powershell\nmultipass info lisbon-test\n```\n\nOpen `http://\u003cvm-ip\u003e/` in a browser.\n\nClean up the VM when finished:\n\n```powershell\nmultipass delete lisbon-test\nmultipass purge\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquackster%2Flisbon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquackster%2Flisbon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquackster%2Flisbon/lists"}