12 lines
141 B
Bash
12 lines
141 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "=== Wireguard UI ==="
|
|
|
|
echo "✓ Starting server on port ${PORT:-3000}..."
|
|
|
|
cd /app
|
|
|
|
bun install
|
|
|
|
bun src/server.ts |