Add local CLI #144

Merged
schmelczer merged 16 commits from asch/local-cli into main 2025-10-21 22:45:47 +01:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 5956840217 - Show all commits

Fix tests

Andras Schmelczer 2025-10-19 19:57:52 +01:00

View file

@ -32,7 +32,7 @@ class FakeFileSystemOperations implements FileSystemOperations {
public async listFilesRecursively(
_root: RelativePath | undefined
): Promise<RelativePath[]> {
throw new Error("Method not implemented.");
return ["file.md"];
}
public async read(_path: RelativePath): Promise<Uint8Array> {
throw new Error("Method not implemented.");

View file

@ -28,8 +28,6 @@ RUN apt update && \
COPY --from=builder /usr/src/backend/target/release/sync_server /app/sync_server
RUN chmod +x /app/test-entrypoint.sh
VOLUME /data
EXPOSE 3000/tcp
WORKDIR /data