mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-25 03:08:34 +00:00
11 lines
345 B
Bash
Executable file
11 lines
345 B
Bash
Executable file
#!/usr/bin/env bash
|
|
. ./env.sh
|
|
|
|
env \
|
|
COMPANION_DATADIR="./output" \
|
|
COMPANION_DOMAIN="localhost:3020" \
|
|
COMPANION_PROTOCOL="http" \
|
|
COMPANION_PORT=3020 \
|
|
COMPANION_CLIENT_ORIGINS="" \
|
|
COMPANION_SECRET="development" \
|
|
nodemon --watch packages/@uppy/companion/src --exec node ./packages/@uppy/companion/src/standalone/start-server.js
|