{"id":22306554,"url":"https://github.com/kmagameguy/subscriptions","last_synced_at":"2025-07-11T14:09:14.948Z","repository":{"id":257981057,"uuid":"871422562","full_name":"Kmagameguy/subscriptions","owner":"Kmagameguy","description":"A self-hostable subscription tracker","archived":false,"fork":false,"pushed_at":"2025-03-11T20:32:55.000Z","size":151,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-11T21:31:38.975Z","etag":null,"topics":["ruby","ruby-on-rails"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/Kmagameguy.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-10-11T23:58:43.000Z","updated_at":"2025-03-11T20:32:07.000Z","dependencies_parsed_at":"2024-11-18T12:18:41.262Z","dependency_job_id":"a8b064fc-3386-404b-9f70-5a38b230066e","html_url":"https://github.com/Kmagameguy/subscriptions","commit_stats":null,"previous_names":["kmagameguy/subscriptions"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kmagameguy%2Fsubscriptions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kmagameguy%2Fsubscriptions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kmagameguy%2Fsubscriptions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kmagameguy%2Fsubscriptions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kmagameguy","download_url":"https://codeload.github.com/Kmagameguy/subscriptions/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245622934,"owners_count":20645678,"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":["ruby","ruby-on-rails"],"created_at":"2024-12-03T19:29:03.621Z","updated_at":"2025-03-26T08:43:47.735Z","avatar_url":"https://github.com/Kmagameguy.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Subscription Tracker\n\nThis is a simple rails application for managing and tracking your personal subscriptions.  It's a really simple/lightweight application that probably doesn't offer much over a simple spreadsheet but it was a nice sandbox for me to experiment with Rails 7 \u0026 Hotwired.  It is in active development and may change dramatically and often.\n\n![Screenshot From 2024-10-15 16-10-43](https://github.com/user-attachments/assets/4e474f36-d9c1-4c04-9779-af169f088f66)\n\n*Note: Prices and service names shown above were created with mock data.  Any similarity to real services is entirely unintentional.*\n\n## Features\n1. Track your subscriptions in the currency of your choice\n1. Support for monthly and annually recurring subscriptions\n1. Track price change history; Each edit to an existing subscription is cataloged so you can see the % increase since you first signed up\n1. Separate user accounts so you and anyone else can track their own subscriptions\n\n## Planned Features\n- [ ] \"Family\" groups: Allow members of a family group to see each others' subscription services.  Maybe you'll find some that are doubled-up!\n- [ ] Easier docker deployment.  The build command isn't too bad but it'd be nicer if a ghcr image was provided.\n\n## Local Development\nThis app comes with a basic devcontainer configuration.  If you are using VSCode:\n1. See this guide which explains how to configure VSCode for devcontainer development: [Visual Studio Code - Dev Containers Tutorial](https://code.visualstudio.com/docs/devcontainers/tutorial)\n1. Clone this repo: `git clone git@github.com:Kmagameguy/subscriptions.git`\n1. Open the repo with VSCode: `code subscriptions`\n1. VSCode should detect the devcontainer configuration and automatically prompt you to re-open the repo in a devcontainer.  Choose YES and VSCode will build the container for you.\n1. Once the container is running you should be able to access it at: `http://localhost:3000`\n\n## Self-Hosting with Docker Compose\nIf you just want to run the application there are sample `.env` and `docker-compose.yaml` files available:\n\n### Step 1: Install Docker\nComplete the following steps:\n1. Install Docker Engine by following the [official guide](https://code.visualstudio.com/docs/devcontainers/tutorial)\n1. Start the Docker service on your machine\n1. Verify that Docker is installed correctly and is running this command:\n\n```\ndocker run hello-world\n# This will succeed if Docker is installed and configured correctly\n```\n\n### Step 2: Configure your Environment\nConfiguration is done through a `.env` file:\n1. You can create it by making a copy of the provided `.env.example` file and renaming it to `.env`\n1. Open your new `.env` file and update each of the variables according to their instructions\n1. Save the file when you're done\n\n### Step 3: Run the Application\n1. `cd` into your repo's root directory: `cd /path/to/subscription/repo`\n1. Run: `docker compose up`\n1. Wait until You see the Rails app come online.  You'll see terminal entries like this: `booting Puma` and `* Listening on http://0.0.0.0:3000`\n1. Try to open the application URL in your browser: `http://localhost:3000`\n\nIf everything is working correctly, you will see the app home page.\n\nNote: You can also run the app in the background: `docker compose up -d`\n\n## Self-Hosting on Bare Metal\nYou should also be able to host this on bare metal, if desired.  Just make sure you have:\n1. A compatible ruby version installed (see `.ruby-version`)\n1. The Rails gem installed\n1. Bundler installed\n1. BYO Postgres DB\n\nJust make a copy of `.env.example` as `.env`, update the values, and run `bin/setup` then `bin/rails s` to spin up the puma server.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmagameguy%2Fsubscriptions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkmagameguy%2Fsubscriptions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkmagameguy%2Fsubscriptions/lists"}