12 lines
137 B
Bash
12 lines
137 B
Bash
#!/usr/bin/env bash
|
|
|
|
## consts
|
|
|
|
target_directory="/tmp/mealie"
|
|
|
|
|
|
## exec
|
|
|
|
cd ${target_directory}/frontend
|
|
npm run generate
|
|
npm run start
|