mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
5 lines
181 B
Bash
Executable File
5 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
node /app/server/index.js &
|
|
{ FLASK_ENV=production FLASK_APP=wsgi.py cd collector && gunicorn --timeout 300 --workers 4 --bind 0.0.0.0:8888 wsgi:api; } &
|
|
wait -n
|
|
exit $? |