Post-Local sync at 2025-06-14T01:20:35Z

This commit is contained in:
Mark Randall Havens
2025-06-13 20:20:36 -05:00
parent d5c06854b1
commit 2a0c69544d
7 changed files with 17 additions and 162 deletions
-8
View File
@@ -1,8 +0,0 @@
#!/bin/bash
# Export Trilium notes as markdown
docker exec trilium_dev trilium-cli export /home/node/trilium-data /tmp/trilium-export --format markdown
# Copy the exported files to a backup directory
mkdir -p ./volumes/trilium-backup/export
docker cp trilium_dev:/tmp/trilium-export ./volumes/trilium-backup/export
# Dump the SQLite database
docker exec trilium_dev sqlite3 /home/node/trilium-data/document.db .dump > ./volumes/trilium-backup/document.sql
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
set -e
chown -R 33:33 /var/www/html /var/www/html/data
exec "$@"
+3 -3
View File
@@ -1,6 +1,6 @@
#!/bin/bash
set -e
echo "Starting fold-stack development environment (excluding Overleaf CE by default)..."
docker compose --env-file .env.dev -f docker-compose.dev.yml up -d --build ghost forgejo radicle pandoc mailhog trilium hedgedoc nextcloud rclone typst git-sync flame_dashboard nginx
echo "Core services started. To enable Overleaf CE, run: ./scripts/enable-overleaf.sh"
echo "Starting fold-stack development environment..."
docker compose --env-file .env.dev -f docker-compose.dev.yml up -d --build ghost forgejo radicle pandoc mailhog hedgedoc rclone typst git-sync
echo "Core services started."