Update README.md to provide a comprehensive overview of The Order monorepo, including repository structure, quickstart guide, development workflow, and contribution guidelines.

This commit is contained in:
defiQUG
2025-11-07 22:34:54 -08:00
parent e020318829
commit 4af7580f7a
128 changed files with 4558 additions and 2 deletions

View File

@@ -0,0 +1,41 @@
# Identity Service
Service for eIDAS/DID, verifiable credentials, and identity management.
## Features
- Wallet/IDP integration
- Verifiable credential issuance and verification
- Qualified signatures for eIDAS
- DID resolution and management
## Development
```bash
# Install dependencies
pnpm install
# Run development server
pnpm dev
# Build
pnpm build
# Start production server
pnpm start
```
## API Endpoints
- `GET /health` - Health check
- `POST /vc/issue` - Issue verifiable credential
- `POST /vc/verify` - Verify verifiable credential
- `POST /sign` - Sign document
## Environment Variables
- `PORT` - Server port (default: 4002)
- `OIDC_ISSUER` - OIDC issuer URL
- `EIDAS_PROVIDER_URL` - eIDAS provider URL
- `KMS_KEY_ID` - KMS key ID for signing

View File

@@ -0,0 +1,27 @@
{
"name": "@the-order/identity",
"version": "0.1.0",
"private": true,
"description": "Identity service: eIDAS/DID, verifiable credentials",
"main": "./src/index.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"fastify": "^4.25.2",
"@the-order/auth": "workspace:*",
"@the-order/crypto": "workspace:*",
"@the-order/schemas": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3",
"tsx": "^4.7.0",
"eslint": "^8.56.0"
}
}

View File

@@ -0,0 +1,48 @@
/**
* Identity Service
* Handles eIDAS/DID, verifiable credentials, and identity management
*/
import Fastify from 'fastify';
const server = Fastify({
logger: true,
});
// Health check
server.get('/health', async () => {
return { status: 'ok' };
});
// Issue verifiable credential
server.post('/vc/issue', async (request, reply) => {
// TODO: Implement VC issuance
return { message: 'VC issuance endpoint - not implemented yet' };
});
// Verify verifiable credential
server.post('/vc/verify', async (request, reply) => {
// TODO: Implement VC verification
return { message: 'VC verification endpoint - not implemented yet' };
});
// Sign document
server.post('/sign', async (request, reply) => {
// TODO: Implement document signing
return { message: 'Sign endpoint - not implemented yet' };
});
// Start server
const start = async () => {
try {
const port = Number(process.env.PORT) || 4002;
await server.listen({ port, host: '0.0.0.0' });
console.log(`Identity service listening on port ${port}`);
} catch (err) {
server.log.error(err);
process.exit(1);
}
};
start();

View File

@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}