SPB Git

spb/svgarden Public

SVGarden — searchable bank of 74 self-contained SVG+CSS animation snippets (svgarden.dev)

HTML 79.2% Astro 10.3% JavaScript 6% CSS 3.7% Shell 0.8%
833 B · 30 lines javascript
Raw Blame History
1/**2 * ============================================================3 * SVGarden — https://www.svgarden.dev4 * Author : Simon-Pierre Boucher5 * Contact: contact@spboucher.ai6 * File   : ecosystem.config.cjs7 * Desc   : pm2 config — static server (svgarden-web) + ngrok tunnel (svgarden-tunnel)8 * ============================================================9 */10module.exports = {11  apps: [12    {13      name: 'svgarden-web',14      script: 'server.mjs',15      interpreter: 'node',16      env: { PORT: 4321, HOST: '127.0.0.1', NODE_ENV: 'production' },17      max_restarts: 10,18      restart_delay: 2000,19    },20    {21      name: 'svgarden-tunnel',22      script: '/opt/homebrew/bin/ngrok',23      interpreter: 'none',24      args: ['start', 'svgarden', '--log=stdout'],25      max_restarts: 10,26      restart_delay: 5000,27    },28  ],29};30