10 lines
189 B
Bash
10 lines
189 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Ejecuta el entorno de desarrollo
|
||
|
|
set -e
|
||
|
|
|
||
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||
|
|
REPO_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
|
||
|
|
|
||
|
|
cd "${REPO_ROOT}"
|
||
|
|
npm run dev
|