Rarime Link Service stores users proofs and provide simple access to it via REST API in JSON:API format.
Before you begin, ensure you have met the following requirements:
- Docker installed, see Docker installation guide
- Go 1.20 installed, see Go installation guide
To build the service binary file, follow these steps:
-
Clone the repository.
git clone github.com/rarimo/rarime-link-svc cd rarime-link-svc
-
Install dependencies and build the service.
go mod tidy go build main.go
To build the service Docker image, follow these steps:
-
Clone the repository.
git clone github.com/rarimo/rarime-link-svc cd rarime-link-svc
-
Build the service image.
sh ./build.sh
To properly configure the service, provide valid config file, see config-example.yaml for example.
To run the service using Docker, follow these steps:
-
Build the service image, see Building.
-
Run the service image.
docker-compose up -d
-
The service will be available on the
8000
port.
To use the service, you could use the swagger documentation, see API Documentation, or any other http client.
We use openapi:json standard for API. We use swagger for documenting our API.
To open online documentation, go to swagger editor, here is how you can start it
cd docs
npm install
npm start
To build documentation use npm run build
command,
that will create open-api documentation in web_deploy
folder.
To generate resources for Go models run ./generate.sh
script in root folder.
use ./generate.sh --help
to see all available options.
We welcome contributions from the community! To contribute to this project, follow these steps:
- Fork the repository.
- Create a new branch with a descriptive name for your feature or bug fix.
- Make your changes and commit them.
- Push your changes to your branch on your GitHub fork.
- Create a pull request from your branch to the
main
branch of this repository.
Please ensure your pull request adheres to the following guidelines:
- Add a clear pull request title;
- Add a comprehensive pull request description that includes the motivation behind the changes, steps needed to test them, etc;
- Update the CHANGELOG.md accordingly;
- Keep the codebase clean and well-documented;
- Make sure your code is properly tested;
- Reference any related issues in your pull request;
The maintainers will review your pull request and may request changes or provide feedback before merging. We appreciate your contributions!
For the changelog, see CHANGELOG.md.
This project is under the MIT License - see the LICENSE file for details.