Skip to content

Commit f3da735

Browse files
committed
sync
1 parent 9a26b30 commit f3da735

178 files changed

Lines changed: 765 additions & 3382 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 3 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,3 @@
1-
# Binaries for programs and plugins
2-
*.exe
3-
*.exe~
4-
*.dll
5-
*.so
6-
*.dylib
7-
8-
# Test binary, built with `go test -c`
9-
*.test
10-
11-
# Output of the go coverage tool, specifically when used with LiteIDE
12-
*.out
13-
14-
# Dependency directories (remove the comment below to include it)
15-
# vendor/
16-
17-
# Go workspace file
18-
go.work
19-
20-
# IDE specific files
21-
.idea/
22-
.vscode/
23-
*.swp
24-
*.swo
25-
26-
# OS specific files
27-
.DS_Store
28-
.DS_Store?
29-
._*
30-
.Spotlight-V100
31-
.Trashes
32-
ehthumbs.db
33-
Thumbs.db
34-
*.log
35-
36-
# Binary output directory
37-
/bin/
38-
/dist/
39-
40-
# Local environment variables
41-
.env
42-
.env.local
43-
44-
.opencode/
45-
# ignore locally built binary
46-
opencode*
1+
node_modules
2+
.opencode
3+
.sst

CONTEXT.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

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 Kujtim Hoxha
3+
Copyright (c) 2025 OpenCode
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

app/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

app/bun.lock renamed to bun.lock

Lines changed: 282 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

js/bun.lock

Lines changed: 0 additions & 348 deletions
This file was deleted.

app/package.json renamed to package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
3-
"name": "opencontrol",
3+
"name": "opencode",
44
"private": true,
55
"type": "module",
66
"packageManager": "bun@1.2.14",
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { DurableObject } from "cloudflare:workers"
22
import { randomUUID } from "node:crypto"
3-
import { Resource } from "sst"
43

54
type Env = {
65
SYNC_SERVER: DurableObjectNamespace<SyncServer>

0 commit comments

Comments
 (0)