diff options
author | Stefan Kreutz <mail@skreutz.com> | 2022-05-19 10:23:18 +0200 |
---|---|---|
committer | Stefan Kreutz <mail@skreutz.com> | 2022-05-19 10:23:18 +0200 |
commit | 4d96b8b8000291561c6185ee2abc888231112274 (patch) | |
tree | 67f74e854ebe6619b20e0771a52d8b5275e4e3fe /README.md | |
parent | 3dd843c80c051987f957df9d19fa74119be9659a (diff) | |
download | temp-postgres-4d96b8b8000291561c6185ee2abc888231112274.tar |
Add Makefile, README, and manual page
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..b7c9fa6 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# temp-postgres + +The temp-postgres utility runs the PostgreSQL server off a temporary data directory. +See [this](https://www.skreutz.com/posts/temporary-postgresql-server/) blog post for an introduction, and refer to the man page for details. + +## Install + +Run `make install` as root to install the `temp-postgres` utility and man page. + +## Release + +Create an annotated tag, and an archive as follows, replacing `0.1.0` with the +current version. + + $ git tag --annotate --message "Version 0.1.0" 0.1.0 + $ git archive --format=tar.gz --prefix=temp-postgres-0.1.0/ \ + --output temp-postgres-0.1.0.tar.gz 0.1.0 + |