14 lines
392 B
Bash
14 lines
392 B
Bash
echo -e "\nStarting post creat command script..."
|
|
echo "Dev machine:"
|
|
uname -a
|
|
echo -e "\nInstalling expo boiler plate..."
|
|
npm install --save-dev -y create-expo-app@2.1.1
|
|
echo -e "\nInstalling watchman...\n"
|
|
sudo apt update
|
|
sudo apt install watchman
|
|
watchman version
|
|
|
|
echo -e "\n*******************************"
|
|
echo -e "\nDev container ready!".
|
|
echo -e "\n*******************************\n"
|