Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ S3_REGION=auto
When configured, all new media uploads go to S3 automatically. To migrate existing local media to S3:

```bash
bun server/scripts/migrate-media-to-s3.js
bun server/migrate-media-to-s3.js
# Add --delete-local to remove local copies after upload
```

Expand All @@ -112,9 +112,9 @@ When S3 is configured, socialChat will automatically back up the SQLite database
To restore a backup:

```bash
bun server/scripts/restore-backup.js # restore latest
bun server/scripts/restore-backup.js list # see available backups
bun server/scripts/restore-backup.js db-2026-03-16-a7f3c9d2.sqlite # restore specific
bun server/restore-backup.js # restore latest
bun server/restore-backup.js list # see available backups
bun server/restore-backup.js db-2026-03-16-a7f3c9d2.sqlite # restore specific
```

## Deployment
Expand All @@ -139,3 +139,4 @@ Any machine with Bun installed works. Point a reverse proxy (nginx, Caddy) at po
## Android Client

A native Android client is available at [usr-wwelsh/socialChatAndroid](https://github.com/usr-wwelsh/socialChatAndroid).