mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
* fix: rdb files can not be saved because of permission issues bug: redis can not save RDB files #318 * refactor: move db and redis dumps to /appdata directory
13 lines
277 B
Bash
13 lines
277 B
Bash
# Run migrations
|
|
node ./db/migrations/$DB_DIALECT/migrate.cjs ./db/migrations/$DB_DIALECT
|
|
|
|
# Start Redis
|
|
redis-server /app/redis.conf &
|
|
|
|
# Run the tasks backend
|
|
node apps/tasks/tasks.cjs &
|
|
|
|
node apps/websocket/wssServer.cjs &
|
|
|
|
# Run the nextjs server
|
|
node apps/nextjs/server.js |