{"id":20381419,"url":"https://github.com/l1ve4code/telegram-note-bot","last_synced_at":"2025-08-01T17:37:37.657Z","repository":{"id":192233205,"uuid":"686332038","full_name":"l1ve4code/telegram-note-bot","owner":"l1ve4code","description":"Telegram-bot - for storing/ sharing user notes, and creating notifications.","archived":false,"fork":false,"pushed_at":"2023-10-26T10:00:54.000Z","size":14644,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T22:35:36.765Z","etag":null,"topics":["java","liquibase","postgresql","spring","telegram-bot","telegrambots"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/l1ve4code.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}},"created_at":"2023-09-02T12:39:25.000Z","updated_at":"2023-10-08T11:17:34.000Z","dependencies_parsed_at":"2023-10-04T04:29:03.472Z","dependency_job_id":"8674cab4-e25e-4218-aa00-395e52b54364","html_url":"https://github.com/l1ve4code/telegram-note-bot","commit_stats":null,"previous_names":["l1ve4code/telegram-note-bot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/l1ve4code/telegram-note-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1ve4code%2Ftelegram-note-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1ve4code%2Ftelegram-note-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1ve4code%2Ftelegram-note-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1ve4code%2Ftelegram-note-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/l1ve4code","download_url":"https://codeload.github.com/l1ve4code/telegram-note-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/l1ve4code%2Ftelegram-note-bot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268268815,"owners_count":24223129,"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","status":"online","status_checked_at":"2025-08-01T02:00:08.611Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["java","liquibase","postgresql","spring","telegram-bot","telegrambots"],"created_at":"2024-11-15T02:13:47.113Z","updated_at":"2025-08-01T17:37:37.623Z","avatar_url":"https://github.com/l1ve4code.png","language":"Java","readme":"\u003ch1 align=\"center\"\u003e📓 Note [Telegram bot]\u003c/h1\u003e\n\n## About\n\nTelegram-bot - for storing user notes, with the ability to share your notes with other users and create reminders.\n\nYou can try it [here](https://t.me/enterprise_note_bot).\n\n| \u003cimg src=\"git-resources/notes.gif\"\u003e | \u003cimg src=\"git-resources/notifications.gif\"\u003e | \u003cimg src=\"git-resources/shares.gif\"\u003e |\n|-------------------------------------|---------------------------------------------|--------------------------------------|\n\n### Goals\n\n* ✅ Add basic functionality with storing user notes in a **List**;\n* ✅ Integrate a database and start using it instead of a **List**;\n* ✅ Add text and hints for existing commands;\n* ✅ Add the ability to automatically generate a table structure in the database for easy deployment of the project;\n* ✅ Add the ability to work with the bot using the **(reply/ inline) keyboard**;\n* ✅ Add the ability to share your notes with other users;\n* ✅ Add the ability to create notifications;\n* ✅ Add the ability to delete notifications;\n* ✅ Consider corner-cases;\n* ✅ Make a Dockerfile to run the project.\n\n### Technologies\n\n* Language: **Java**\n* Framework: **Spring Framework**\n* Database: **PostgreSQL**\n* Technologies: **Telegrambots, Lombok, Liquibase**\n\n## Installing\n\n### Clone the project\n\n```shell\ngit clone https://github.com/l1ve4code/telegram-note-bot.git\n```\n\n### Set your values in postgres.yml or production.yml\n\n_(For example: username, password and etc, or **use defaults**)_\n\n```yaml\n  postgres:\n    container_name: \u003cyour-container-name\u003e\n    image: postgres\n    environment:\n      POSTGRES_USER: \u003cyour-user-name\u003e\n      POSTGRES_PASSWORD: \u003cyour-password\u003e\n      PGDATA: /data/postgres\n    volumes:\n      - postgres:/data/postgres\n    ports:\n      - \"5432:5432\"\n    restart: unless-stopped\n```\n\n### Replace the gaps in the config with your values\n\n_(Properties path: src/main/properties.d/telegram.properties)_\n\n```properties\nspring.datasource.url=jdbc:postgresql://\u003cyour-host\u003e:5432/\u003cyour-database\u003e\nspring.datasource.username=\u003cyour-username\u003e\nspring.datasource.password=\u003cyour-password\u003e\nspring.datasource.driver-class-name=org.postgresql.Driver\n\nspring.liquibase.change-log=classpath:postgres/changelog.xml\n\ntelegram.bot.name=\u003cyour-bot-name\u003e\ntelegram.bot.token=\u003cyour-bot-token\u003e\n```\n\n### Project startup _(using IDE)_\n\nFirst, you need to run docker-compose\n\n```shell\ndocker-compose -f postgres.yml up\n```\n\nThen you need to start the Java project using your IDE\n\n### Project startup _(using Docker)_\n\nJust run this command and project will be built and launched automatically\n\n```shell\ndocker-compose -f production.yml up\n```\n\nGood luck ✨\n\n## Author\n\n* Telegram: **[@live4code](https://t.me/live4code)**\n* Email: **steven.marelly@gmail.com**","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl1ve4code%2Ftelegram-note-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fl1ve4code%2Ftelegram-note-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fl1ve4code%2Ftelegram-note-bot/lists"}