mirror of
https://github.com/Mintplex-Labs/anything-llm
synced 2026-04-25 17:15:37 +02:00
5 lines
167 B
Bash
Executable File
5 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
node /app/server/index.js &
|
|
{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
|
|
wait -n
|
|
exit $? |