Unzip archive and open in IDEA IDE
mkdir ~/.bin
curl -sS https://raw.githubusercontent.com/daggerok/uao/master/uao > ~/.bin/uao
echo 'export PATH="$HOME/.bin:$PATH"' >> ~/.bash_profile # or ~/.bashrc # or ~/.zshrc
chmod +x ~/.bin/uao
or
git clone --depth=1 --no-single-branch [email protected]:daggerok/uao.git ~/.opt/uao
chmod +x ~/.opt/uao/uao # git update-index --chmod=+x ./uao
mkdir ~/.bin
ln -s `pwd`/.opt/uao/uao ~/.bin/uao
echo 'export PATH="$PATH:$HOME/.bin"' >> ~/.bash_profile # or ~/.bashrc # or ~/.zshrc
- make sure you have
idea
andunzip
binaries installed on youmacOS
orLinux
shell (click-click if you on windows:) - generate new project on https://start.spring.io/
- open it like Josh Long :)
uao ~/Downloads/demo.zip
# install spring boot:
brew tap spring-io/tap
brew reinstall spring-boot
# create spring-boot project demo.zip archive:
mkdir /tmp/123
cd /tmp/123
spring init
# test uao script:
uao ./demo.zip
Enjoy ;)