{"id":30174149,"url":"https://github.com/btawaifi/trello-todo-app","last_synced_at":"2026-04-15T10:35:07.301Z","repository":{"id":44243978,"uuid":"406508240","full_name":"BTawaifi/trello-todo-app","owner":"BTawaifi","description":"A Fullstack Application That Allows Custom Communication with Trello's REST API","archived":false,"fork":false,"pushed_at":"2022-02-11T16:47:39.000Z","size":1642,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-12T00:38:50.111Z","etag":null,"topics":["docker","express","nodejs","react","reactjs","redis","rest-api","trello-api"],"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/BTawaifi.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}},"created_at":"2021-09-14T20:12:24.000Z","updated_at":"2022-07-05T14:46:50.000Z","dependencies_parsed_at":"2022-09-21T19:20:40.208Z","dependency_job_id":null,"html_url":"https://github.com/BTawaifi/trello-todo-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BTawaifi/trello-todo-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BTawaifi%2Ftrello-todo-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BTawaifi%2Ftrello-todo-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BTawaifi%2Ftrello-todo-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BTawaifi%2Ftrello-todo-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BTawaifi","download_url":"https://codeload.github.com/BTawaifi/trello-todo-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BTawaifi%2Ftrello-todo-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31837385,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T10:26:52.245Z","status":"ssl_error","status_checked_at":"2026-04-15T10:26:51.649Z","response_time":63,"last_error":"SSL_read: 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":["docker","express","nodejs","react","reactjs","redis","rest-api","trello-api"],"created_at":"2025-08-12T00:24:53.499Z","updated_at":"2026-04-15T10:35:07.269Z","avatar_url":"https://github.com/BTawaifi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BTawaifi trello-todo-app\n\n\u003e A Fullstack Application That Allows Custom Communication with Trello\n\n## Quick Start\n\n## Acquire Necessary Enviromental Variables\n\n```bash\n# Navigate To\nhttps://trello.com/app-key\n\n# Store your Key then generate a token by clicking on Generate Token (store it also)\n\n# Create a .env file and write the following (or edit enviromental variables on the webhost)\nTrello_Key= {your app key}\nTrello_Token= {your generated token}\n\n# Run the Express server to get your board id\ncd server\nnpm run server\nNavigate to '/boards' route in the browser url ex:\"http://localhost:5000/boards\"\n\n# Store your board ID and add to .env file\nTrello_Token= {your generated token}\n\n# Continue by restarting the server and running the client\n```\n\n## Redis Standalone Setup (Cache Server Optional)\n\n### For Windows download and install the service\n\n```bash\nhttps://github.com/tporadowski/redis/releases\n```\n\n### For Docker just run the following command\n\n```bash\ndocker run -d --name redis -p 6379:6379 redis\n\n# for further documentation visit: https://hub.docker.com/_/redis\n```\n\n- Redis requires further configuration by providing a redis.conf file\n- Docker containers will need network linking if they aren't on the bridge network\n- set REDIS_HOST env variable for the api server to redis container name if it's not connecting\n\n## Setup using NPM\n\n```bash\n# Change directory to server directory\ncd server\n\n# Install dependencies for server\nnpm install\n\n# Install dependencies for client\nnpm run client-install\n\n# Create a .env file and write the following (or add enviromental variables on the webhost)\nREDIS_HOST: {redis server ip (container name or ip in case of docker usage) }\nREDIS_PORT: {redis server port}\nTrello_Key= {your app key}\nTrello_Token= {your generated token}\nTrello_Board_ID= {your chosen Board id}\n\n-\u003e Start Redis\n\n# Run the client \u0026 server with concurrently\nnpm run dev\n\n# Run the Express server only\nnpm run server\n\n# Run the React client only\nnpm run client\n\n# Server runs on http://localhost:5000 and client on http://localhost:3000\n\n# If the server is not on localhost add or edit .env on the client\nGENERATE_SOURCEMAP=FALSE\nREACT_APP_Server_URL=\"http://localhost:5000\"\n\n```\n\n## Setup using Docker\n\n```bash\n# Edit docker-compose.yml with your own enviromental variables\nREDIS_HOST: {redis container name or ip}\nREDIS_PORT: {redis container port}\nTrello_Key= {your app key}\nTrello_Token= {your generated token}\nTrello_Board_ID= {your chosen Board id}\n\n# Run the Following Commands\ndocker build -t \"react-app\" ./client/\ndocker build -t \"api-server\" ./server/\n\n# Start The Containers\n\ndocker-compose up\n\n# To Stop The Containers\n\ndocker-compose down\n\n# Server runs locally on http://localhost:5000 and client on http://localhost:3000\n```\n- If you are facing connection issues on windows set WSL Adapter's IP to DHCP and DNS to Auto\n- If you want to use vpn you need to restart docker after you connect","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtawaifi%2Ftrello-todo-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbtawaifi%2Ftrello-todo-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtawaifi%2Ftrello-todo-app/lists"}