Getting started
Installation
Binaries
You can download the latest binaries for Linux, MacOS and Windows from the releases page.
- Windows
- 64-bit (use this if you don't know)
- 32-bit (older computers)
- Mac OS
- 64-bit
- ARM64 (M1 Macs)
- Linux
- 64-bit
- 32-bit (older computers)
- ARM64 (Raspberry Pi, etc.)
Package managers
TIP
Package files are also available to download from Github Releases, in case the package manager's repositories are not up-to-date enough
WARNING
This is my first time packaging a program to practically all package managers. I'm not familiar with most of them. If the installation does not work, please open an issue.
Linux
Distro-specific
bash
paru -S ortfodb-bin
bash
echo "deb [trusted=yes] https://deb.ortfo.org/ /" | sudo tee /etc/apt/sources.list.d/ortfo.list
sudo apt update
sudo apt install ortfodb
bash
# waiting on https://github.com/goreleaser/goreleaser/issues/3136 to add it to COPR
sudo dnf -y install dnf-plugins-core
sudo dnf config-manager --add-repo https://rpm.ortfo.org/
# rpm.ortfo.org is not signed yet, so we need to disable GPG checks
sudo dnf --nogpgcheck install ortfodb
bash
# not available yet
# look for a .apk file in the github releases
# apk add ortfodb
bash
# not available yet
# look for a .termux.deb file in the github releases
# pkg install ortfodb
# using Ubuntu's install instructions may work, idk
bash
# coming soon™
Universal
bash
# coming soon™
bash
# coming soon™
bash
# coming soon™
bash
# on its own tap for the moment
brew tap ortfo/brew-ortfodb/ortfodb
brew install ortfodb
MacOS
bash
# on its own tap for the moment
brew tap ortfo/brew-ortfodb/ortfodb
brew install ortfodb
Windows
powershell
# To be submitted, not yet available
# winget install ortfo.db
powershell
# not on official repos yet
scoop bucket add https://github.com/ortfo/scoop-ortfodb
scoop install ortfodb
powershell
# not yet avaiable: needs to be on windows to build the package…
Using go
bash
go install github.com/ortfo/db/cmd@latest
Building from source
Requirements
- Go
- Just: a modern alternative to Makefiles[1]. See Just's docs on installation
Steps
- Clone the repository:
git clone https://github.com/ewen-lbh/portfoliodb
cd
into it:cd portfoliodb
- Compile & install in
~/.local/bin/
just install
... or simply build a binary to your working directory:just build
.
One big advantage of Just is that it works painlessly on Windows. ↩︎