-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·35 lines (25 loc) · 818 Bytes
/
setup.sh
File metadata and controls
executable file
·35 lines (25 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
echo "Configuring Librescript CLI..."
echo "alias librescript='$(pwd)/LibreScriptBootstrap.sh'" >> ~/.zshrc
source ~/.zshrc
echo "alias librescript='$(pwd)/LibreScriptBootstrap.sh'" >> ~/.bashrc
source ~/.bashrc
sleep 2
echo "Librescript CLI configured successfully"
sleep 1
echo "Installing dependencies..."
cd frontend-web
npm install
cd ..
cd backend-api
dotnet restore
cd ..
cd ..
echo "Dependencies installed successfully"
sleep 1
echo ""
echo "Useful Commands :"
echo "--------------------------------"
echo "librescript --clean : Clean the environment"
echo "librescript --log : Start the environment with Kubernetes and Docker for Prod & Log the environment"
echo "librescript : Start the environment with Kubernetes and Docker for Prod"
echo "Github Repo : https://github.com/intel1337/LibreScript"