10 lines
241 B
Bash
10 lines
241 B
Bash
#!/bin/bash
|
|
|
|
# This script assumes that everything has been built already
|
|
export DATABASE_URL=mysql://freechat_dev:password@localhost:3306/freechat
|
|
json-api/target/release/json-api -s &
|
|
pushd rtc-server
|
|
npm start
|
|
popd
|
|
kill $(pgrep json-api)
|