https://github.com/moeraorg/moera-naming
Moera naming service, for issues use: https://github.com/MoeraOrg/moera-issues/issues
https://github.com/moeraorg/moera-naming
blockchain blog cloud decentralized moera naming personal-blog personal-cloud social-network
Last synced: 5 months ago
JSON representation
Moera naming service, for issues use: https://github.com/MoeraOrg/moera-issues/issues
- Host: GitHub
- URL: https://github.com/moeraorg/moera-naming
- Owner: MoeraOrg
- License: gpl-3.0
- Created: 2018-12-15T22:27:16.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T01:19:19.000Z (about 1 year ago)
- Last Synced: 2025-04-06T19:55:31.206Z (about 1 year ago)
- Topics: blockchain, blog, cloud, decentralized, moera, naming, personal-blog, personal-cloud, social-network
- Language: Java
- Homepage:
- Size: 200 KB
- Stars: 12
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Moera Naming Server
## Resources
* Live network: https://web.moera.org
* Read more about Moera at https://moera.org
* Learn more about Moera naming servers: http://moera.org/overview/naming.html
* Bugs and feature requests: https://github.com/MoeraOrg/moera-issues/issues
* How to set up a complete Moera Development Environment:
http://moera.org/development/development-environment.html
## Installation instructions
1. As prerequisites, you need to have Java 17+ and PostgreSQL 9.6+
installed. In all major Linux distributions, you can install them from
the main package repository.
2. Create a PostgreSQL user `` with password `` and
an empty database `` owned by this user (see [detailed instructions][1]).
3. Go to the source directory.
4. Create `application-dev.yml` file with the following content:
```yaml
spring:
datasource:
url: jdbc:postgresql:?characterEncoding=UTF-8
username:
password:
flyway:
user:
password:
```
5. By default, the server runs on port 8080. If you want it to run on a
different port, add these lines to the file above:
```yaml
server:
port:
```
6. Execute `./run` script.
[1]: https://moera.org/administration/installation/create-db.html