mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
9242578263
* WIP aws fixes to latest changes; * change default in docker env * bump storage default for docker * Updates to docker deployment
9 lines
329 B
Bash
Executable File
9 lines
329 B
Bash
Executable File
#!/bin/bash
|
|
{ cd /app/server/ &&\
|
|
npx prisma generate --schema=./prisma/schema.prisma &&\
|
|
npx prisma migrate deploy --schema=./prisma/schema.prisma &&\
|
|
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 $? |