Skip to content

Commit edc01aa

Browse files
committed
Merge branch 'codex/regulatory-compatibility-sweep'
# Conflicts: # src/routes/federation.ts # src/schemas/handshake.schema.json # src/schemas/match.schema.json # src/schemas/material-dna.schema.json # src/schemas/material-status.schema.json # src/schemas/offer.schema.json # src/schemas/transfer.schema.json # tests/federation.routes.test.ts # tests/loop.routes.test.ts
2 parents 21a0405 + ac41e46 commit edc01aa

28 files changed

+410
-103
lines changed

.env.docker.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PORT=8088
22
PUBLIC_BASE_URL=https://loop-api.urbnia.com
33
NODE_ID=lab-hub.loop
4-
NODE_NAME=LocalLoop Lab Hub
4+
NODE_NAME=localLOOP Lab Hub
55
NODE_CAPABILITIES=material-registry,lab-relay
66

77
# Postgres

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# LocalLoop Backend Environment Configuration
1+
# localLOOP Backend Environment Configuration
22
# Copy to .env and modify values as needed
33

44
# IMPORTANT: In production (NODE_ENV=production), you MUST set:
@@ -12,7 +12,7 @@ NODE_ENV=development
1212
PORT=8088
1313
PUBLIC_BASE_URL=https://loop-api.urbnia.com
1414
NODE_ID=lab-hub.loop
15-
NODE_NAME=LocalLoop Lab Hub
15+
NODE_NAME=localLOOP Lab Hub
1616
NODE_CAPABILITIES=material-registry,lab-relay
1717

1818
# Postgres

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Project maintainers may remove, edit, or reject contributions that violate this
2828

2929
## Reporting
3030

31-
Report violations to: alphinctom@gmail.com (GitHub: @alpha912)
31+
Report violations to: alphin@mycel-ai.de (GitHub: @alpha912)
3232

3333
## Attribution
3434

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to LocalLoop Backend
1+
# Contributing to localLOOP Backend
22

33
Thanks for your interest in contributing! This backend is intentionally small and focused.
44

@@ -20,4 +20,4 @@ bun run dev
2020
- [ ] No secrets committed
2121

2222
## Contact
23-
Questions? Email alphinctom@gmail.com or open a GitHub Discussion.
23+
Questions? Email alphin@mycel-ai.de or open a GitHub Discussion.

DOMAIN-POLICY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Domain Policy
22

3-
This backend serves the LocalLoop lab demo and public APIs.
3+
This backend serves the localLOOP lab demo and public APIs.
44

55
## Canonical domains
66

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025-2026 Alphin Tom
3+
Copyright (c) 2025-2026 Alphin Tom / Mycel UG (haftungsbeschränkt)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# LocalLoop Backend
1+
# localLOOP Backend
22

3-
Backend service for collecting and publishing Expressions of Interest for the LocalLoop protocol.
3+
Backend service for collecting and publishing Expressions of Interest for the localLOOP platform.
44

55
> This project is an early, low-TRL concept. There are no public pilots or deployments. Lab demo only.
66
@@ -27,8 +27,8 @@ bun test
2727
- `POST /api/interest`: submit an Expression of Interest.
2828
- `GET /api/interest`: list Expressions of Interest.
2929
- `GET /api/interest/stream`: SSE stream for new interest.
30-
- `GET /api/loop/stream`: SSE stream for lab demo flow.
31-
- `POST /api/loop/material-status`: record a material status update (lab demo).
30+
- `GET /api/v1/stream`: SSE stream for lab demo flow.
31+
- `POST /api/v1/material-status`: record a material status update (lab demo).
3232
- `GET /api/metrics`: service metrics.
3333

3434
LOOP interop write routes accept `application/ld+json` as the preferred content type.

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
## Reporting a Vulnerability
44

5-
Please report security issues by emailing **alphinctom@gmail.com** (GitHub: @alpha912).
5+
Please report security issues by emailing **alphin@mycel-ai.de** (GitHub: @alpha912).
66
Do not open public issues for security-sensitive reports.
77

88
## Scope
99

10-
This repository contains the LocalLoop backend API. All dependencies and server logic
10+
This repository contains the localLOOP backend API. All dependencies and server logic
1111
are in scope.
1212

1313
## Response Timeline

deploy/localloop-backend.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=LocalLoop Backend API
2+
Description=localLOOP Backend API
33
After=network.target postgresql.service redis.service
44
Wants=postgresql.service redis.service
55

deploy/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# LocalLoop Backend Deployment Setup Script
2+
# localLOOP Backend Deployment Setup Script
33
# This script provisions the non-root user and sets up the deployment environment.
44
# Run as root: sudo bash deploy/setup.sh
55

@@ -9,7 +9,7 @@ INSTALL_DIR="${INSTALL_DIR:-/opt/localloop-backend}"
99
SERVICE_USER="${SERVICE_USER:-localloop}"
1010
SERVICE_GROUP="${SERVICE_GROUP:-localloop}"
1111

12-
echo "=== LocalLoop Backend Deployment Setup ==="
12+
echo "=== localLOOP Backend Deployment Setup ==="
1313
echo "Install directory: $INSTALL_DIR"
1414
echo "Service user: $SERVICE_USER"
1515
echo ""

0 commit comments

Comments
 (0)