6 lines
99 B
Bash
6 lines
99 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
echo "Starting Hermes frontend..."
|
||
|
|
cd "$(dirname "$0")/../frontend"
|
||
|
|
npm run dev
|