{"id":39134431,"url":"https://github.com/a1ex3/reminders_tg_bot","last_synced_at":"2026-01-17T21:23:02.599Z","repository":{"id":217944288,"uuid":"743842325","full_name":"A1ex3/reminders_tg_bot","owner":"A1ex3","description":"A simple telegram bot for notifications about upcoming events.","archived":false,"fork":false,"pushed_at":"2024-01-26T12:54:16.000Z","size":142,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-01-26T13:55:32.019Z","etag":null,"topics":["docker","go","linux","reminders","sqlite","telegram-bot","windows"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/A1ex3.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}},"created_at":"2024-01-16T05:24:12.000Z","updated_at":"2024-01-26T13:55:32.020Z","dependencies_parsed_at":"2024-01-24T12:06:20.649Z","dependency_job_id":"fbd8392f-4f2c-4a1b-88a8-330d44097adc","html_url":"https://github.com/A1ex3/reminders_tg_bot","commit_stats":{"total_commits":19,"total_committers":2,"mean_commits":9.5,"dds":"0.21052631578947367","last_synced_commit":"d53b8043ff469816e452b887be796edd2f564c61"},"previous_names":["a1ex3/reminders_tg_bot"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/A1ex3/reminders_tg_bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/A1ex3%2Freminders_tg_bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/A1ex3%2Freminders_tg_bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/A1ex3%2Freminders_tg_bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/A1ex3%2Freminders_tg_bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/A1ex3","download_url":"https://codeload.github.com/A1ex3/reminders_tg_bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/A1ex3%2Freminders_tg_bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28518623,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T18:55:29.170Z","status":"ssl_error","status_checked_at":"2026-01-17T18:55:03.375Z","response_time":85,"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","go","linux","reminders","sqlite","telegram-bot","windows"],"created_at":"2026-01-17T21:23:01.828Z","updated_at":"2026-01-17T21:23:02.538Z","avatar_url":"https://github.com/A1ex3.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reminders Telegram Bot\n## A simple telegram bot for notifications about upcoming events.\n![https://github.com/A1ex3/reminders_tg_bot/blob/main/.images/main.png](https://github.com/A1ex3/reminders_tg_bot/blob/main/.images/main.png?raw=true)\n\n## File `config.json`\n| Key | Type | Description |\n| - | - | - |\n| tgBotApiToken | String | Token of the Telegram bot. ||\n| tgBotDebug | Boolean | Will output debugging information. ||\n| dateTimeFormats | Array[string] | Contains templates for formatting the date time. ||\n| registrationAccess | Boolean | Allows new users to register, via the /start command. ||\n| pathToDataBase | String | Contains the path to the sqlite database. ||\n| maxCountEventsPerUser | Integer | Determines how many notifications a user can have recorded. ||\n\n## Build\n### Program requirements:\n- OS Linux/Windows x64\n- Make\n- Go\n- SQLite3\n- Git\n\n### Repository cloning\n```bash\ngit clone https://github.com/A1ex3/reminders_tg_bot.git\n```\n\n### Creating a database from `schema.sql` file\n```bash\nmake makedb\n```\n\n### Program assembly\n```bash\nmake build\n```\n\n## How to use\n### You need to download the archive with the build for your OS\n- linux\n```bash\nwget https://github.com/A1ex3/reminders_tg_bot/releases/download/latest/reminders_tg_bot_linux_x64.tar.gz\n```\n- windows powershell\n```powershell\nInvoke-WebRequest -Uri \"https://github.com/A1ex3/reminders_tg_bot/releases/download/latest/reminders_tg_bot_windows_x64.zip\" -OutFile \"C:\\RemindersTgBot\"\n```\n\n### It is necessary to unpack the archive\n- linux\n```bash\ntar xvzf reminders_tg_bot_linux_x64.tar.gz\n```\n- windows powershell\n```powershell\nExpand-Archive -Path C:\\RemindersTgBot\\reminders_tg_bot_windows_x64.zip -DestinationPath C:\\RemindersTgBot\n```\n\n### You need to customize the `config.json` configuration file. you need to insert the api-token for the telegram bot into the `tgBotApiToken` field. [More about config.json](#file-configjson).\n### or create an environment variable\n```bash\nexport TGBOTAPITOKEN=token_value\n```\n### Then you need to add commands to the bot, `menu - \u003cdescription\u003e` and `get - \u003cdescription\u003e`\n### Run App\n- linux\n```bash\nchmod +x reminders_tg_bot\n```\n```bash\n./reminders_tg_bot -config_path=\"config.json\"\n```\n- windows powershell\n```\n.\\reminders_tg_bot.exe -config_path=\"config.json\"\n```\n\n## Docker Container Launch.\n### First you need to create a `config.json` file, where it is in the place where it will be stored is usually `/etc/reminders_tg_bot/config.json`\n### Next, you need to paste the data into `config.json` from this [file](https://github.com/A1ex3/reminders_tg_bot/blob/main/config.json) file and fill it in.\n- If the token is written to `config.json`\n```bash\ndocker run -p 443:443 -p 80:80 --name reminders_tg_bot -v /etc/reminders_tg_bot/config.json:/etc/reminders_tg_bot/config.json -d ghcr.io/a1ex3/reminders_tg_bot:latest\n```\n- If the token is written to the environment variable `TGBOTAPITOKEN`\n```bash\ndocker run -p 443:443 -p 80:80 --name reminders_tg_bot -e TGBOTAPITOKEN=tgBotApiToken -v /etc/reminders_tg_bot/config.json:/etc/reminders_tg_bot/config.json -d ghcr.io/a1ex3/reminders_tg_bot:latest\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa1ex3%2Freminders_tg_bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fa1ex3%2Freminders_tg_bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fa1ex3%2Freminders_tg_bot/lists"}