10 lines
189 B
Bash
Executable file
10 lines
189 B
Bash
Executable file
#!/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
|