Skip to content

Commit 6e73d02

Browse files
authored
Merge pull request #1 from SourceOS-Linux/feat/pdf-first-runtime-scaffold
2 parents 04c88cd + 750720a commit 6e73d02

23 files changed

Lines changed: 80 additions & 1 deletion

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
dist/
3+
build/
4+
.env
5+
.DS_Store

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
up:
2+
docker compose -f infra/compose/docker-compose.yml up --build
3+
4+
down:
5+
docker compose -f infra/compose/docker-compose.yml down -v

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,22 @@ Primary product/runtime repository for the SourceOS shell.
99
- `SociOS-Linux/source-os` = Linux realization surfaces
1010
- `SociOS-Linux/albert` = temporary launcher bridge only
1111

12-
This repo will host the shell runtime, document/PDF lane, search/router services, and publication-facing runtime surfaces.
12+
## Immediate sequencing
13+
14+
This repository is the runtime home for the broader shell stack, but the first implementation slice is **PDF-first**.
15+
16+
Initial runtime scope:
17+
- `services/docd` — derive lane
18+
- `services/pdf-secure` — sign / validate lane
19+
- `apps/pdf-viewer-demo` — PDF viewer/demo surface
20+
- `content/` — draft / derived / reports layout
21+
- minimal workspace/bootstrap files
22+
23+
Explicitly deferred until after the PDF lane is real:
24+
- notes / graph / gallery / playground surfaces
25+
- broader shell UX expansion
26+
- non-PDF publication features beyond what the PDF lane needs
27+
28+
## Intent
29+
30+
We keep the repo boundary correct without letting the first implementation slice sprawl beyond the PDF/document/runtime lane.

apps/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
PDF-first sequencing: the first app surface in this repo will be the PDF viewer/demo.

apps/pdf-viewer-demo/.gitkeep

Whitespace-only changes.

apps/pdf-viewer-demo/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>sourceos-shell PDF Viewer Demo</title>
7+
</head>
8+
<body>
9+
<h1>sourceos-shell PDF Viewer Demo</h1>
10+
<p>PDF-first runtime scaffold placeholder.</p>
11+
</body>
12+
</html>

apps/pdfdemo/.gitkeep

Whitespace-only changes.

content/derived/pdf/.gitkeep

Whitespace-only changes.

content/derived/pdf_signed/.gitkeep

Whitespace-only changes.

content/draft/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)