mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
8be32c015f
Updated the docker development documentation and changed the backend run-app command to use `-u puma` instead of `thin`.
8 lines
124 B
Bash
Executable File
8 lines
124 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
set -u
|
|
|
|
rm -rf "${OPENPROJECT_STORAGE_TMP__PATH:-tmp}/*"
|
|
exec bundle exec rails server -u puma -b 0.0.0.0
|