mirror of
https://github.com/trushildhokiya/allininx-2.git
synced 2025-03-14 23:38:40 +00:00
9 lines
155 B
Bash
9 lines
155 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cd "$(dirname "$0")" || exit 1
|
||
|
|
||
|
# The CLI will take care of setting up the ENV variables
|
||
|
cd ./cli || exit 1
|
||
|
npm install
|
||
|
npm run start
|