mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
13 lines
327 B
Bash
Executable File
13 lines
327 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
ROOT=`dirname $0`
|
|
cd "$ROOT/.."
|
|
|
|
VERSION=`cat "$ROOT/../../desktop-electron/package.json" | grep version | head -n1 | awk -F "\"" '{print $4}' | tr -d '\r\n'`
|
|
|
|
export IS_GENERIC_BROWSER=1
|
|
export PORT=3001
|
|
export REACT_APP_BACKEND_WORKER_HASH="dev"
|
|
export REACT_APP_ACTUAL_VERSION="$VERSION"
|
|
|
|
node scripts/start.js |