A simple open-source licensing server for your products.
Go to file
2024-09-09 19:28:09 +00:00
.gitea/workflows Bump lombok ver 2023-12-02 03:59:06 -05:00
Example-Java Add badges to README.md 2023-12-02 04:15:07 -05:00
Frontend Initial Frontend Base 2023-12-02 04:48:37 -05:00
src/main Add plan & latest product ver to licenses 2023-12-02 03:52:57 -05:00
.gitignore Remove this for now 2023-12-02 20:40:20 -05:00
docker-compose.yml Add docker-compose file 2023-12-02 03:57:30 -05:00
Dockerfile test 2023-12-02 00:22:37 -05:00
pom.xml fix(deps): update dependency org.springframework.boot:spring-boot-starter-parent to v3.3.3 2024-09-09 19:28:09 +00:00
README.md Add badges to README.md 2023-12-02 04:15:07 -05:00
renovate.json chore(deps): add renovate.json 2024-03-18 02:21:55 +00:00

Discord Wakatime Hours Download

LicenseServer

A simple open-source licensing server for your products.

Discord Preview

License Global Log License Owner Log License Owner Lookup

API Reference

Check License

POST /check

Body

Key Type Description
key string Required. Your base64 encrypted license key
product string Required. The product the license is for
hwid string Required. The base64 encrypted hardware id of the requester

Response

Error
{
  "error": "Error message"
}
Success
{
  "description": "Testing",
  "ownerSnowflake": 504147739131641857,
  "ownerName": "Braydon#2712",
  "expires": "2023-06-02T06:00:47.270+00:00"
}

Deployment

Docker

docker run -d -p 7500:7500 -v "$(pwd)/data/application.yml:/usr/local/app/application.yml" git.rainnny.club/rainnny/licenseserver:latest  

Docker Compose

version: '3'
services:
  app:
    image: git.rainnny.club/rainnny/licenseserver:latest
    volumes:
      - ./data/application.yml:/usr/local/app/application.yml
    ports:
      - "7500:7500"