{"id":17766930,"url":"https://github.com/martinambrus/dreamcatcher","last_synced_at":"2025-05-12T20:58:10.157Z","repository":{"id":178922980,"uuid":"662570042","full_name":"martinambrus/DreamCatcher","owner":"martinambrus","description":"A trainable RSS reader to allow you to concentrate on what's important to you.","archived":false,"fork":false,"pushed_at":"2024-12-19T14:26:59.000Z","size":1387,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T03:35:30.383Z","etag":null,"topics":["rss","rss-aggregator","rss-feed-scraper","rss-generator","rss-reader"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/martinambrus.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":"2023-07-05T12:18:05.000Z","updated_at":"2024-12-19T14:27:18.000Z","dependencies_parsed_at":"2024-12-14T07:35:44.603Z","dependency_job_id":null,"html_url":"https://github.com/martinambrus/DreamCatcher","commit_stats":null,"previous_names":["martinambrus/dreamcatcher"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinambrus%2FDreamCatcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinambrus%2FDreamCatcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinambrus%2FDreamCatcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/martinambrus%2FDreamCatcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/martinambrus","download_url":"https://codeload.github.com/martinambrus/DreamCatcher/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253823353,"owners_count":21969844,"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":["rss","rss-aggregator","rss-feed-scraper","rss-generator","rss-reader"],"created_at":"2024-10-26T20:39:27.592Z","updated_at":"2025-05-12T20:58:10.137Z","avatar_url":"https://github.com/martinambrus.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Install and run on Debian-based Linux (Ubuntu etc.)\n- `sudo apt update`\n- (optional) `sudo apt upgrade -y` (and then possibly `sudo reboot`)\n- `sudo apt install -y ca-certificates curl gnupg`\n- `sudo mkdir -p /etc/apt/keyrings \u0026\u0026 curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg`\n- `NODE_MAJOR=20 \u0026\u0026 echo \"deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main\" | sudo tee /etc/apt/sources.list.d/nodesource.list`\n- `sudo apt-get update \u0026\u0026 sudo apt-get install nodejs -y`\n- `sudo install -m 0755 -d /etc/apt/keyrings \u0026\u0026 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg \u0026\u0026 sudo chmod a+r /etc/apt/keyrings/docker.gpg`\n- `echo \"deb [arch=\"$(dpkg --print-architecture)\" signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \"$(. /etc/os-release \u0026\u0026 echo \"$VERSION_CODENAME\")\" stable\" | sudo tee /etc/apt/sources.list.d/docker.list \u003e /dev/null`\n- `sudo apt-get update \u0026\u0026 sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin -y`\n- `git clone https://github.com/martinambrus/dreamcatcher.git \u0026\u0026 cd dreamcatcher`\n- `mv .env.dev.example .env`\n- `mkdir -m 777 -p infrastructure/datadir/kafka_dev_data \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/pgdata_dev \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/kafka_0_data \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/kafka_1_data \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/kafka_2_data \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/elastic \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/elastic/esdata01 \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/elastic/esdata02 \u0026\u0026 mkdir -m 777 -p infrastructure/datadir/elastic/esdata03 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/pgdata_0 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/pgdata_1 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/pgdata_2 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/elastic/esdata01 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/elastic/esdata02 \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/elastic/esdata03`\n- `sudo chown -R 1001:1001 infrastructure/datadir/kafka_dev_data \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/pgdata_dev \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/kafka_0_data \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/kafka_1_data \u0026\u0026 sudo chown -R 1001:1001 infrastructure/datadir/kafka_2_data`\n- `sudo chmod +x *.sh \u0026\u0026 sudo ./start_docker-dev.sh`\n\nIf you're trying to run **production** environment, for Elastic Search to work please make sure that:\n- on **Windows** using WSL, execute the following in your PowerShell: `wsl -d docker-desktop sysctl -w vm.max_map_count=262144`\n- on **Linux** (this one is for Ubuntu 20+), edit the file `/etc/sysctl.d/99-sysctl.conf` and add the following line: `vm.max_map_count=262144` and reboot. Generally on Linux, follow this advice from the official from Elastic Search website: https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html#_linux\n\n# Notes\n- if you're developing, don't forget to run `npx prisma generate` in the [dreamcatcher-db](https://github.com/martinambrus/dreamcatcher-db) repository every time your database structure changes to keep your client updated!","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinambrus%2Fdreamcatcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmartinambrus%2Fdreamcatcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmartinambrus%2Fdreamcatcher/lists"}