progress on license server

This commit is contained in:
2025-10-18 16:00:07 -04:00
parent 144123f40e
commit 05c89e5c61
6 changed files with 551 additions and 1 deletions

View File

@@ -1,3 +1,14 @@
# micro-license-server
A very small, self-hosted license server intended for lower traffic projects.
A very small, self-hosted license server intended for lower traffic projects.
## Environment Setup
Replace the placeholder secrets in `.env` with secure random values using `openssl rand`:
```bash
sed -i \
-e "s/PG_CHANGEME/$(openssl rand -base64 32)/" \
-e "s/API_CHANGEME/$(openssl rand -base64 48)/" \
.env
```