19 lines
632 B
Bash
19 lines
632 B
Bash
#!/bin/bash
|
|
#!/bin/bash
|
|
|
|
#*************************#
|
|
# RELEASER:main #
|
|
#*************************#
|
|
# Designed & Developed by #
|
|
# Adrien Marquès #
|
|
# <xdrm-brackets> #
|
|
#*************************#
|
|
# git.xdrm.io #
|
|
#*************************#
|
|
|
|
git clone --recursive https://git.xdrm.io/ptut/virtenv.git ptut.virtenv \
|
|
&& mkdir -p ./ptut.virtenv/metactl/persistent \
|
|
&& curl https://xdrm.io/script/ptut-database > ./ptut.virtenv/metactl/persistent/mariadb.sql \
|
|
&& bash -c "`curl https://xdrm.io/script/ptut-rp`" -s 8080 -i \
|
|
&& make -C ./ptut.virtenv start \
|
|
&& xdg-open http://ptut.com:8080; |