https://github.com/timescale/homebrew-tap
TimescaleDB Homebrew tap, containing formulas for the database, tools, etc.
https://github.com/timescale/homebrew-tap
homebrew timescaledb
Last synced: 5 months ago
JSON representation
TimescaleDB Homebrew tap, containing formulas for the database, tools, etc.
- Host: GitHub
- URL: https://github.com/timescale/homebrew-tap
- Owner: timescale
- Created: 2017-03-24T17:10:51.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2025-04-15T18:47:24.000Z (6 months ago)
- Last Synced: 2025-05-07T04:58:40.405Z (5 months ago)
- Topics: homebrew, timescaledb
- Language: Ruby
- Homepage:
- Size: 90.8 KB
- Stars: 20
- Watchers: 11
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Brew formulas for TimescaleDB
The repository that hosts the [brew][1] formulas to install TimescaleDB on
macOs.## Installing from the formula
If you're looking for only installing the TimescaleDB on a macOs, check how to
install from our [official guide][2].## Development
If you want to edit the actual formula locally try:
```bash
brew edit timescaledb
```## Testing
If you want to test a Pull Request in progress in this repository, use the
following steps:Navigate to the Timescale tap directory:
```bash
cd $(brew --prefix)/Homebrew/Library/Taps/timescale/homebrew-tap/
```The folder is a git repository, so you can fetch the branches and check out the target branch and test it.
```bash
git fetch
```It will fetch all the branches from the remote repository. You can use `git
branch` to list them and then `git checkout` to start testing it.```bash
git checkout
```Now, you can run the formula, and it will run it from the actual branch:
```bash
brew install --build-from-source timescaledb
```You can see all brew options for running the formula [here][3].
After you finish your testing/development, don't forget to switch back to the main branch:
```bash
git checkout -
```[1]: https://brew.sh
[2]: https://docs.timescale.com/install/latest/self-hosted/installation-macos/#install-self-hosted-timescaledb-using-homebrew
[3]: https://docs.brew.sh/Formula-Cookbook#install-the-formula