
Security News
npm ‘is’ Package Hijacked in Expanding Supply Chain Attack
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
github.com/LekoLabs/go-redmine
Intefaces to redmine.
go get github.com/mattn/go-redmine
Provide Interfaces to redmine APIs.
API | Implements |
---|---|
Issues | 100% |
Projects | 100% |
Project Memberships | 100% |
Users | 0% |
Time Entries | 100% |
News | 100% |
Issue Relations | 100% |
Versions | 100% |
Wiki Pages | 100% |
Queries | 0% |
Attachments | 0% |
Issue Statuses | 100% |
Trackers | 100% |
Enumerations | 100% |
Issue Categories | 100% |
Roles | 100% |
Groups | 0% |
Provide command line tool for redmine.
go install github.com/mattn/go-redmine/cmd/godmine@latest
godmine <command> <subcommand> [arguments]
Project Commands:
add a create project with text editor.
$ godmine p a
create c create project from given arguments.
$ godmine p c name identifier description
update u update given project.
$ godmine p u 1
show s show given project.
$ godmine p s 1
delete d delete given project.
$ godmine p d 1
list l listing projects.
$ godmine p l
Issue Commands:
add a create issue with text editor.
$ godmine i a
create c create issue from given arguments.
$ godmine i c subject description
update u update given issue.
$ godmine i u 1
show s show given issue.
$ godmine i s 1
delete d delete given issue.
$ godmine i d 1
close x close given issue.
$ godmine i x 1
notes n add notes to given issue.
$ godmine i n 1
list l listing issues.
$ godmine i l
To use this, you should create settings.json
in:
UNIX:
~/.config/godmine/settings.json
WINDOWS:
%APPDATA%\godmine/settings.json
Write following:
{
"endpoint": "http://redmine.example.com",
"apikey": "YOUR-API-KEY",
"project": 1 // default project id
}
If you want switching configuration file, you should use GODMINE_ENV
environment variable.
If you set GODMINE_ENV
to mine, godmine use settings.mine.json
to configuration file.
MIT
Yasuhiro Matsumoto (a.k.a mattn)
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.
Security News
A critical flaw in the popular npm form-data package could allow HTTP parameter pollution, affecting millions of projects until patched versions are adopted.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.