7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
# Production start script
|
|
# Run backend server (Elysia errors are harmless warnings that don't affect functionality)
|
|
|
|
export LOG_LEVEL=debug
|
|
exec bun src/backend/index.js
|