{"id":41441866,"url":"https://github.com/evolvingweb/redmine_atjs","last_synced_at":"2026-01-23T14:57:19.042Z","repository":{"id":11261692,"uuid":"13664259","full_name":"evolvingweb/redmine_atjs","owner":"evolvingweb","description":"Integration of redmine with at.js","archived":false,"fork":false,"pushed_at":"2024-05-22T07:45:36.000Z","size":458,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-05-22T08:42:46.033Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/evolvingweb.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2013-10-17T23:57:58.000Z","updated_at":"2024-05-22T07:45:12.000Z","dependencies_parsed_at":"2024-05-22T08:40:35.954Z","dependency_job_id":"a0aafd69-e719-444c-8011-19ecfa408d7a","html_url":"https://github.com/evolvingweb/redmine_atjs","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/evolvingweb/redmine_atjs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvingweb%2Fredmine_atjs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvingweb%2Fredmine_atjs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvingweb%2Fredmine_atjs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvingweb%2Fredmine_atjs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/evolvingweb","download_url":"https://codeload.github.com/evolvingweb/redmine_atjs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/evolvingweb%2Fredmine_atjs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28694458,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-23T14:15:13.573Z","status":"ssl_error","status_checked_at":"2026-01-23T14:09:05.534Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-01-23T14:57:18.539Z","updated_at":"2026-01-23T14:57:19.035Z","avatar_url":"https://github.com/evolvingweb.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# redmine-atjs\n\nRedmine plugin that integrates [At.js library](http://ichord.github.io/At.js/) to enable auto-completion\nbased on issue titles, while editing wiki and issue pages.\n\u003cimg src=\"https://raw.githubusercontent.com/dergachev/redmine_atjs/master/assets/images/redmine_atjs_demo.gif\" width=500 /\u003e\n\n## Installation\n\nTested with Redmine 3.4 and 4.1\n\n```bash\ncd /opt/redmine\ngit clone https://github.com/dergachev/redmine_atjs.git  plugins/redmine_atjs\n\n# fix permissions as appropriate for your installation\nsudo chown -R www-data:www-data plugins/redmine_atjs\n\n# restart your redmine app, however you do it (nginx/apache2/unicorn/etc...)\nsudo service nginx restart\n```\n\n## TODO\n\n* Support multi-word searching (IMPORTANT)\n* consider creating AtjsController to provide optimized/customizable autocomplete endpoint.\n* write tests\n\n## Development\n\nThis project comes with a Vagrantfile, that allows you to easily spin up a\nredmine 2.3 development VM, with this plugin installed. To use it, do the following:\n\n```bash\n# download and install Vagrant, Virtualbox...\n\n# required vagrant plugins\nvagrant plugin install vagrant-omnibus\nvagrant plugin install vagrant-cachier\n\n# install librarian, a bundler-like tool for chef cookbooks\ngem install librarian\n\n# clone this repo to your home directory somewhere\ngit clone https://github.com/dergachev/redmine_atjs.git  ~/code/redmine_atjs\ncd ~/code/redmine_atjs\n\n# install dependent chef cookbooks\nlibrarian-chef install\n\n# spin up the vm... this will take a while.\nvagrant up\n\nvagrant ssh\nls /vagrant            # your ~/code/redmine_atjs directory is \"mounted\" by Virtualbox here\n\ncd /opt/redmine        # redmine root\nls -al plugins         # /opt/redmine/plugins/redmine_atjs --symlinks--\u003e /vagrant/\n\nls -al public/plugin_assets/redmine_atjs/javascripts      \n#    contains all the JS files from plugin (copied on rails restart)\n#    public/plugin_assets/redmine_atjs/javascripts/redmine-atjs.js --symlinks--\u003e /vagrant/assets/javascripts/redmine-atjs.js\n#    this means tweaking the JS file doesn't require rails restart\n\n# if you change any code in a rails plugin, need to restart rails to test it (even in RAILS_ENV=development)\nsudo service unicorn_redmine restart\n```\n\nIf this succeeds, you can visit http://localhost:8080 to login to redmine (credentials: admin/admin)\n\nIf it fails, you might need to debug/tweak the [redmine cookbook](https://github.com/dergachev/chef_redmine).\nTo do this:\n\n```bash\ncd ~/code/redmine_atjs\nmkdir site-cookbooks\ngit clone https://github.com/dergachev/chef_redmine site-cookbooks/redmine\n\nvim Cheffile   # ensure redmine is sourced from local path instead of git url\nlibrarian-chef install\n\n# tweak chef attributes in Vagrantfile, if necessary\n# modify code in site-cookbooks/redmine/recipes/*, if necessary\n\n# re-run chef on the VM, with the cookbook modifications\nvagrant provision\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolvingweb%2Fredmine_atjs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevolvingweb%2Fredmine_atjs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevolvingweb%2Fredmine_atjs/lists"}