Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luk3yx/lurkcoin-core
https://github.com/luk3yx/lurkcoin-core
Last synced: 16 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/luk3yx/lurkcoin-core
- Owner: luk3yx
- License: agpl-3.0
- Created: 2020-04-21T10:09:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-25T03:00:01.000Z (over 3 years ago)
- Last Synced: 2024-11-01T10:42:39.785Z (2 months ago)
- Language: Go
- Size: 168 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# lurkcoin
This is the core code of the current release of
[lurkcoin](https://forum.minetest.net/viewtopic.php?f=9&t=22768).## Installation
Make sure you have [Go](https://golang.org) 1.13 or later installed.
To run lurkcoin, you can compile the lurkcoin-core binary:
```
$ go get github.com/luk3yx/lurkcoin-core
$ lurkcoin-core /path/to/config.yaml
```*If you get a command not found error, you may have to run
~/go/bin/lurkcoin-core instead.*I advise against importing `github.com/luk3yx/lurkcoin-core` in your own Go
code, any functions or types can and will change in future releases.## Restoring the database from a backup
```
$ go get github.com/luk3yx/lurkcoin-core/cmd/...
$ lurkcoin-restore-backup /path/to/config.yaml /path/to/backup.json
```## Configuration
See config.yaml for a list of configuration options.
## Compilation flags
The following compilation flags are supported:
- `lurkcoin.disablebbolt`: Disables the bbolt database. If this flag is used,
bbolt does not need to be installed.
- `lurkcoin.disableplaintextdb`: Disables the plaintext database.
- `lurkcoin.disablev2api`: Disables version 2 of the API. This can also be
done at runtime in config.yaml.## License
Copyright © 2020 by luk3yx
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .