1
0
Fork
You've already forked cli
0
CLI interface for Facite built with cobra-cli
  • Go 68.9%
  • Shell 29.4%
  • Makefile 1.7%
Find a file
2024年02月14日 16:33:56 +01:00
.github workflow 2024年01月19日 11:33:17 +01:00
cmd fix: MinimumNArgs too high 2024年01月19日 16:49:42 +01:00
.gitignore fix up 2024年02月14日 16:31:58 +01:00
go.mod init 2024年01月14日 20:53:05 +01:00
go.sum init 2024年01月14日 20:53:05 +01:00
install.sh feat: installation script 2024年01月19日 11:06:31 +01:00
LICENSE docs: add copyright to 'headers' 2024年01月14日 21:55:10 +01:00
main.go init 2024年01月14日 20:53:05 +01:00
Makefile feat: installation script 2024年01月19日 11:06:31 +01:00
README.md more fixing up 2024年02月14日 16:33:56 +01:00

facite-cli

A command line interface for Facite, a (soon-to-be) self-hostable, cross-platform and integratable task manager
Install · Request feature or report bug · (削除) Contributing (削除ここまで)

Getting Started

Installing via the installation script

The installation script requires grep, jq and curl

System-wide installation:
curl https://raw.githubusercontent.com/sheeepdev/facite-cli/master/install.sh | sudo bash -s

Note: Always check bash scripts before running them as sudo. Feel free to check out our installation script, it's safe.

Local installation
curl https://raw.githubusercontent.com/sheeepdev/facite-cli/master/install.sh | bash -s

Compiling

To compile facite you need to have go andgit` installed, and run the following commands:

git clone https://github.com/sheeepdev/facite-cli && cd facite-cli
sudo make install

The binary will now build in the directory, you can move the binary to the /usr/bin directory by running the following command:

sudo mv facite /usr/bin

or for local installation:

mkdir ~/.local/bin
mv facite ~/.local/bin