{"id":29133277,"url":"https://github.com/azurejelly/nayuki","last_synced_at":"2026-04-13T03:46:41.799Z","repository":{"id":301596676,"uuid":"1006755426","full_name":"azurejelly/nayuki","owner":"azurejelly","description":"Discord suggestion management bot written in Go","archived":false,"fork":false,"pushed_at":"2025-07-03T16:56:02.000Z","size":304,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-13T03:46:40.225Z","etag":null,"topics":["discord","discord-bot","discord-bots","discord-go","discord-slash-commands","discordgo","docker-compose","docker-image","go","golang","golang-application","mongodb","slash-commands"],"latest_commit_sha":null,"homepage":"","language":"Go","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/azurejelly.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-22T23:53:07.000Z","updated_at":"2025-07-24T08:37:28.000Z","dependencies_parsed_at":"2025-06-27T18:24:42.481Z","dependency_job_id":"57b60a14-6bd1-465a-9e3a-d0d604f4703a","html_url":"https://github.com/azurejelly/nayuki","commit_stats":null,"previous_names":["azurejelly/nayuki"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/azurejelly/nayuki","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fnayuki","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fnayuki/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fnayuki/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fnayuki/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/azurejelly","download_url":"https://codeload.github.com/azurejelly/nayuki/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/azurejelly%2Fnayuki/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31739050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T03:27:07.512Z","status":"ssl_error","status_checked_at":"2026-04-13T03:26:53.610Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["discord","discord-bot","discord-bots","discord-go","discord-slash-commands","discordgo","docker-compose","docker-image","go","golang","golang-application","mongodb","slash-commands"],"created_at":"2025-06-30T07:02:48.709Z","updated_at":"2026-04-13T03:46:41.778Z","avatar_url":"https://github.com/azurejelly.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nayuki ![build](https://img.shields.io/github/actions/workflow/status/azurejelly/nayuki/go.yml?logo=github\u0026logoColor=ffffff) ![docker](https://img.shields.io/docker/pulls/azurejelly/nayuki?logo=docker)\n\nnayuki is an easy to use discord suggestions bot written in go. it allows you to easily manage them, lets users in your server vote and even creates discussion threads. to get started, simply add it to your server using [this link](https://discord.com/oauth2/authorize?client_id=1381268909226987630\u0026permissions=395137000512\u0026integration_type=0\u0026scope=bot+applications.commands).\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"./assets/suggestion.png\" width=450\u003e\n\u003c/p\u003e\n\n## configuration\n\n1. set the suggestions channel using `/config channel set`. this is where all suggestions will be sent to.\n2. set the logging channel using `/config logs set` (optional, but recommended).\n3. enable or disable discussion threads by using `/config threads enable` or `/config threads disable`.\n4. try it out! use `/suggest` to make a new suggestion. its ID will be displayed at the bottom of the embed.\n5. if a suggestion has a good amount of likes and you like the idea, accept it with `/accept`. otherwise, use `/decline`.\n\n## project setup\n\nto get started, you'll need:\n\n- an internet connection\n- a mongodb instance\n- go \u003e= 1.24.4\n- git\n\nfirst, clone the repository:\n\n```shell\n$ git clone https://github.com/azurejelly/nayuki\n$ cd nayuki/\n```\n\nthen, copy the `.env.example` file into `.env` and modify it accordingly:\n\n```shell\n$ cp .env.example .env\n$ code .env # or just use your preferred editor (e.g. nano, vim)\n```\n\nto get a temporary development mongodb instance using docker, run:\n\n```shell\n$ docker run -d --rm \\\n    --name \"mongo\" \\\n    -p 127.0.0.1:27017:27017 \\\n    mongo:latest\n```\n\nthe default value for `MONGO_URI` in the `.env.example` file should work out of the box with this docker container.\nif you no longer need the mongodb server, simply run the following command to remove it:\n\n```shell\n$ docker stop mongo\n```\n\nfinally, you can run the bot using:\n\n```shell\n$ go run main.go\n```\n\nor compile it with:\n\n```shell\n$ go build main.go -o nayuki\n$ ./nayuki\n```\n\n## with docker\n\nclone the repository:\n\n```shell\n$ git clone https://github.com/azurejelly/nayuki\n$ cd nayuki/\n```\n\ncopy `.env.example` to `.env` and modify `TOKEN` and `GUILD_ID` (if needed):\n\n```shell\n$ cp .env.example .env\n$ code .env # or just use your preferred code editor (e.g. nano, vim)\n```\n\nand finally, start the stack:\n\n```shell\n$ docker compose up -d\n```\n\nthe existing [docker compose configuration](./docker-compose.yml) will automatically spin up a mongodb server for the bot to use. you'll need to edit it if you want to use an existing database.\n\n## license\n\nthis project is licensed under the MIT license. you can read it [here](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurejelly%2Fnayuki","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fazurejelly%2Fnayuki","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fazurejelly%2Fnayuki/lists"}