Features: - Full DM inbox UI with conversation list and message view - Support for both NIP-04 (kind 4) and NIP-17 (kind 14/1059) encryption - Progressive message decryption with background loading - Soft delete using kind 30078 Application Specific Data events - Message selection UI with delete selected/delete all - Undelete all functionality per conversation - Jump to newest button with new message counter - Conversation filtering (all / follows only) - Per-conversation relay and encryption settings - New messages indicator on sidebar (clears when inbox viewed) - Follow indicator on conversation items 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
646 B
Markdown
32 lines
646 B
Markdown
# Deploy Command
|
|
|
|
Deploy smesh to the VPS at mleku.dev, serving on port 3008 behind smesh.mleku.dev.
|
|
|
|
## Instructions
|
|
|
|
1. Build the project locally:
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
2. If build fails, fix any errors and retry before proceeding.
|
|
|
|
3. Sync the dist folder to the VPS:
|
|
```bash
|
|
rsync -avz --delete dist/ mleku.dev:~/smesh/dist/
|
|
```
|
|
|
|
4. Restart the smesh service on the VPS:
|
|
```bash
|
|
ssh mleku.dev "sudo systemctl restart smesh"
|
|
```
|
|
|
|
5. Verify the service is running:
|
|
```bash
|
|
ssh mleku.dev "sudo systemctl status smesh"
|
|
```
|
|
|
|
6. Report the deployment status and the URL: https://smesh.mleku.dev
|
|
|
|
$ARGUMENTS
|