mirror of
https://github.com/coderofsalvation/podi.git
synced 2026-05-18 05:04:56 +02:00
13 lines
234 B
YAML
13 lines
234 B
YAML
app: |-
|
|
#!/bin/sh
|
|
echo "PID=$(cat .pid) => $(date) PORT=$PORT"
|
|
while sleep 1; do printf .; done
|
|
|
|
foo: |-
|
|
bar
|
|
flop
|
|
|
|
cmd:
|
|
- chmod 755 app
|
|
- echo "export PORT=$(awk 'BEGIN{ srand(); print int(rand()*1000)+8000 }')" > .env
|