8 lines
132 B
Bash
8 lines
132 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting production server..."
|
|
|
|
ollama serve &
|
|
service nginx start
|
|
service redis-server start
|
|
node /app/start.js
|