Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tristan957/pg_extension
Template for C-based Postgres extensions
https://github.com/tristan957/pg_extension
postgresql-extension
Last synced: about 1 month ago
JSON representation
Template for C-based Postgres extensions
- Host: GitHub
- URL: https://github.com/tristan957/pg_extension
- Owner: tristan957
- Created: 2024-11-12T04:56:44.000Z (about 2 months ago)
- Default Branch: master
- Last Pushed: 2024-11-12T06:37:08.000Z (about 2 months ago)
- Last Synced: 2024-11-12T07:30:21.230Z (about 2 months ago)
- Topics: postgresql-extension
- Language: Meson
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSES/CC0-1.0.txt
Awesome Lists containing this project
README
# `pg_extension`
This is a template repository for writing C-based Postgres extensions.
Any code in this repository is marked as [`CC0-1.0`](./LICENSES/CC0-1.0.txt)
unless marked otherwise.## Building
```shell
meson setup build
ninja -C build
```## Installing
```shell
meson install -C build
```