mirror of
https://codeberg.org/scip/anydb.git
synced 2025-12-18 04:51:00 +01:00
fix references to codeberg
This commit is contained in:
24
README.md
24
README.md
@@ -1,3 +1,5 @@
|
|||||||
|
## A personal key value store
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> This software is now being maintained on [Codeberg](https://codeberg.org/scip/anydb/).
|
> This software is now being maintained on [Codeberg](https://codeberg.org/scip/anydb/).
|
||||||
|
|
||||||
@@ -7,8 +9,6 @@
|
|||||||
[](https://codeberg.org/scip/anydb/releases)
|
[](https://codeberg.org/scip/anydb/releases)
|
||||||
[](https://github.com/TLINDEN/anydb/blob/master/anydb.pod)
|
[](https://github.com/TLINDEN/anydb/blob/master/anydb.pod)
|
||||||
|
|
||||||
## A personal key value store
|
|
||||||
|
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> Between version 0.1.0 and version 0.2.1 deletion of keys did not work. There
|
> Between version 0.1.0 and version 0.2.1 deletion of keys did not work. There
|
||||||
> is a unit test to check for this, but this unit test had a bug as well and
|
> is a unit test to check for this, but this unit test had a bug as well and
|
||||||
@@ -16,7 +16,7 @@
|
|||||||
> upgrade to 0.2.1 and above.
|
> upgrade to 0.2.1 and above.
|
||||||
|
|
||||||
> [!CAUTION]
|
> [!CAUTION]
|
||||||
> Version 0.1.3 introduced a [regression](https://github.com/TLINDEN/anydb/issues/19),
|
> Version 0.1.3 introduced a [regression](https://codeberg.org/scip/anydb/issues/19),
|
||||||
> which caused the encryption feature not to work correctly anymore.
|
> which caused the encryption feature not to work correctly anymore.
|
||||||
> If you are using anydb 0.1.3, you are urgently advised to
|
> If you are using anydb 0.1.3, you are urgently advised to
|
||||||
> upgrade to 0.2.0
|
> upgrade to 0.2.0
|
||||||
@@ -49,17 +49,17 @@ And I wrote a very similar [tool](https://www.daemon.de/projects/dbtool/) 24 yea
|
|||||||
|
|
||||||
**anydb** can do all the things you can do with skate:
|
**anydb** can do all the things you can do with skate:
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
However, there are more features than just that!
|
However, there are more features than just that!
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
There are multiple ways to install **anydb**:
|
There are multiple ways to install **anydb**:
|
||||||
|
|
||||||
- Go to the [latest release page](https://github.com/tlinden/anydb/releases/latest),
|
- Go to the [latest release page](https://codeberg.org/scip/anydb/releases),
|
||||||
locate the binary for your operating system and platform.
|
locate the binary for your operating system and platform.
|
||||||
|
|
||||||
Download it and put it into some directory within your `$PATH` variable.
|
Download it and put it into some directory within your `$PATH` variable.
|
||||||
@@ -72,7 +72,7 @@ There are multiple ways to install **anydb**:
|
|||||||
|
|
||||||
- You can also install from source. Issue the following commands in your shell:
|
- You can also install from source. Issue the following commands in your shell:
|
||||||
```shell
|
```shell
|
||||||
git clone https://github.com/TLINDEN/anydb.git
|
git clone https://codeberg.org/scip/anydb.git
|
||||||
cd anydb
|
cd anydb
|
||||||
make
|
make
|
||||||
sudo make install
|
sudo make install
|
||||||
@@ -80,7 +80,7 @@ There are multiple ways to install **anydb**:
|
|||||||
|
|
||||||
- Or, if you have the GO toolkit installed, just install it like this:
|
- Or, if you have the GO toolkit installed, just install it like this:
|
||||||
```shell
|
```shell
|
||||||
go install github.com/tlinden/anydb@latest
|
go install codeberg.org/scip/anydb@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
If you do not find a binary release for your platform, please don't
|
If you do not find a binary release for your platform, please don't
|
||||||
@@ -107,14 +107,14 @@ Here, we operate in a local directory `mydb`, which we'll use as HOME
|
|||||||
inside the docker container. anydb will store its database in
|
inside the docker container. anydb will store its database in
|
||||||
`mydb/.config/anydb/default.db`.
|
`mydb/.config/anydb/default.db`.
|
||||||
|
|
||||||
A list of available images is [here](https://github.com/tlinden/anydb/pkgs/container/anydb/versions?filters%5Bversion_type%5D=tagged)
|
A list of available images is [here](https://codeberg.org/scip/anydb/pkgs/container/anydb/versions?filters%5Bversion_type%5D=tagged)
|
||||||
|
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
The documentation is provided as a unix man-page. It will be
|
The documentation is provided as a unix man-page. It will be
|
||||||
automatically installed if you install from source. However, you can
|
automatically installed if you install from source. However, you can
|
||||||
[read the man-page online](https://github.com/TLINDEN/anydb/blob/master/anydb.pod)
|
[read the man-page online](https://codeberg.org/scip/anydb/blob/master/anydb.pod)
|
||||||
|
|
||||||
Or if you cloned the repository you can read it this way (perl needs
|
Or if you cloned the repository you can read it this way (perl needs
|
||||||
to be installed though): `perldoc anydb.pod`.
|
to be installed though): `perldoc anydb.pod`.
|
||||||
@@ -131,7 +131,7 @@ best way for me to forget to do something.
|
|||||||
|
|
||||||
In order to report a bug, unexpected behavior, feature requests or to
|
In order to report a bug, unexpected behavior, feature requests or to
|
||||||
submit a patch, please open an issue on github:
|
submit a patch, please open an issue on github:
|
||||||
https://github.com/TLINDEN/anydb/issues.
|
https://codeberg.org/scip/anydb/issues.
|
||||||
|
|
||||||
## Copyright and license
|
## Copyright and license
|
||||||
|
|
||||||
@@ -143,7 +143,7 @@ T.v.Dein <tom AT vondein DOT org>
|
|||||||
|
|
||||||
## Project homepage
|
## Project homepage
|
||||||
|
|
||||||
https://github.com/TLINDEN/anydb
|
https://codeberg.org/scip/anydb
|
||||||
|
|
||||||
## Copyright and License
|
## Copyright and License
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user