mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
8 lines
166 B
Bash
Executable File
8 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# This script runs the Rails server and logs the screen output.
|
|
|
|
DATE=`date +%Y%m%d-%H%M%S-%3N`
|
|
docker/server-log 2>&1 | tee log/server-$DATE.log
|