2019-08-03 11:17:03 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
echo 'extension=iconv.so' >> /etc/php/php.ini
|
|
|
|
echo 'extension=sqlite3.so' >> /etc/php/php.ini
|
|
|
|
|
|
|
|
test -d vendor || ./bin/setup_web
|
|
|
|
test -d storage/ca || mkdir storage/ca
|
2019-08-03 11:19:53 +00:00
|
|
|
test -f storage/ca/ca.crt || ./bin/setup
|
2019-08-03 11:17:03 +00:00
|
|
|
|
|
|
|
php -S 0.0.0.0:80 -t public public/index.php
|