{"id":24792755,"url":"https://github.com/jonbunator/enterr","last_synced_at":"2026-02-16T16:21:46.039Z","repository":{"id":273211160,"uuid":"901239496","full_name":"JonBunator/Enterr","owner":"JonBunator","description":"Tool that automates website logins to prevent account deletion due to inactivity. ","archived":false,"fork":false,"pushed_at":"2025-03-22T19:53:07.000Z","size":396,"stargazers_count":82,"open_issues_count":6,"forks_count":5,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-02T15:06:54.817Z","etag":null,"topics":["auto-login","automatic-login","automatic-website-login","inactivity-deletion","login","periodic-login","tracker","tracker-auto-login","tracker-login"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"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/JonBunator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-12-10T09:46:26.000Z","updated_at":"2025-03-27T00:10:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"17d9ceb4-5755-4ec5-a298-27f42cef4959","html_url":"https://github.com/JonBunator/Enterr","commit_stats":null,"previous_names":["jonbunator/enterr"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonBunator%2FEnterr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonBunator%2FEnterr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonBunator%2FEnterr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JonBunator%2FEnterr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JonBunator","download_url":"https://codeload.github.com/JonBunator/Enterr/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248075435,"owners_count":21043587,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["auto-login","automatic-login","automatic-website-login","inactivity-deletion","login","periodic-login","tracker","tracker-auto-login","tracker-login"],"created_at":"2025-01-29T20:54:54.890Z","updated_at":"2026-02-16T16:21:46.034Z","avatar_url":"https://github.com/JonBunator.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg alt=\"enterr logo\" src=\".github/images/logo.png\" width=\"350\"/\u003e\n\n# Website Auto-Login Tool\n[![Enterr license](https://img.shields.io/github/license/JonBunator/Enterr?color=6da797)](https://github.com/JonBunator/Enterr/blob/main/LICENSE)\n[![GitHub release (latest by date)](https://img.shields.io/github/v/release/JonBunator/Enterr?color=6da797)](https://github.com/JonBunator/Enterr/releases)\n[![Docker Image](https://img.shields.io/badge/Docker-GitHub%20Container%20Registry-6da797?logo=docker)](https://github.com/JonBunator/Enterr/pkgs/container/enterr)\n[![Made with Love](https://img.shields.io/badge/Made%20with%20%E2%9D%A4%20by-JonBunator-6da797)](https://github.com/JonBunator)\n\nSome websites delete your account after a period of inactivity. Enterr helps manage your logins by automatically logging into your accounts, ensuring they remain active.\n\n\u003e [!WARNING]\n\u003e This tool is still at an early stage of development. Expect breaking changes.\n\n\u003e [!CAUTION]\n\u003e Disclaimer: **Use of this tool may violate the Terms of Service (TOS) of the websites it interacts with.** Users are solely responsible for any consequences. The developers are not liable for misuse or damages.\n\n\u003cimg alt=\"enterr screenshot\" src=\".github/images/screenshot.png\"/\u003e\n\n## Docker compose\nCreate a `docker-compose.yml` and add the following. You can change the port if you want. Replace `MY_RANDOM_SECRET` with a random secret.\n```yml\nservices:\n  enterr:\n    container_name: enterr\n    image: ghcr.io/jonbunator/enterr:latest\n    environment:\n      - SECRET_KEY=MY_RANDOM_SECRET\n    volumes:\n      - ./config:/config\n    ports:\n      - \"7653:7653\"\n    restart: unless-stopped\n```\nThen start the container:\n```bash\ndocker compose up -d\n```\nYou can access the ui via `http://localhost:7653`\n\n## User Management\nThe following commands are intended for use with Docker Compose. If you are not using Docker Compose, or are managing containers through tools like [Portainer](https://portainer.io) or [Unraid](https://unraid.net), please follow this guide instead: [User Management without Docker Compose](https://github.com/JonBunator/Enterr/wiki/User-Management-without-Docker-Compose)\n\n### Create a user\n```bash\ndocker compose run --rm enterr create_user \u003cUSERNAME\u003e \u003cPASSWORD\u003e\n```\n```bash\ndocker compose run --rm enterr create_user my_username 123456\n```\n\n### Delete a user\n```bash\ndocker compose run --rm enterr delete_user \u003cUSERNAME\u003e\n```\n```bash\ndocker compose run --rm enterr delete_user my_username\n```\n\n### Set a different password\n```bash\ndocker compose run --rm enterr set_password \u003cUSERNAME\u003e \u003cNEW_PASSWORD\u003e\n```\n```bash\ndocker compose run --rm enterr set_password my_username 456789\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonbunator%2Fenterr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonbunator%2Fenterr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonbunator%2Fenterr/lists"}