Daily Weekly Monthly

Daily Shaarli

All links of one day in a single page.

08/24/25

Note: Production Process Manager (pm2)
#!/bin/bash

export NODE_ENV=production
export TURSO_URL=libsql://xx-x.aws-xx-1.turso.io
export TURSO_AUTH_TOKEN=eyJ...BCw
export JWT_SECRET=kIjoiNGQwM4NzA4YmI1MDFhIn0
export PORT=99999

pm2 start dist/index.mjs \
        --name name-api \
        --interpreter node \
        --watch \
        --ignore-watch="node_modules .git logs"