mirror of
https://github.com/danielbrendel/hortusfox-web.git
synced 2026-05-06 21:59:52 -05:00
68 lines
1.7 KiB
Plaintext
68 lines
1.7 KiB
Plaintext
# HortusFox launcher script
|
|
#
|
|
# This script launches a local web environment and opens the default browser with the URL of the web app.
|
|
#
|
|
# Requires AquaShell, Windows and Apache & MySQL (e.g. XAMPP installation)
|
|
# On first start you'll need to specify your paths to httpd and mysqld.
|
|
#
|
|
|
|
require "auto";
|
|
require "fileio";
|
|
require "textinput";
|
|
require "miscutils";
|
|
|
|
const SERVER_PORT int <= 8000;
|
|
|
|
global project_path string;
|
|
getscriptpath project_path;
|
|
|
|
global server_url string;
|
|
set server_url <= "http://localhost";
|
|
|
|
if (%SERVER_PORT, -nt, 80) {
|
|
set server_url <= "%server_url:%SERVER_PORT";
|
|
};
|
|
|
|
global flag bool;
|
|
|
|
function create_path_file void()
|
|
{
|
|
local apache_path string;
|
|
local mysql_path string;
|
|
local timestamp string;
|
|
|
|
input apache_path "Please enter path to your httpd.exe: ";
|
|
input mysql_path "Please enter path to your mysqld.exe: ";
|
|
|
|
fmtdatetime "%F %T" timestamp;
|
|
|
|
fopen(fh, "%project_path\paths.dnys", false) {
|
|
fwriteline %fh "# Auto-generated at %timestamp";
|
|
fwriteline %fh "";
|
|
fwriteline %fh { const APACHE_PATH string <= "D:\Programme\xampp\apache\bin"; };
|
|
fwriteline %fh { const MYSQL_PATH string <= "D:\Programme\xampp\mysql\bin"; };
|
|
};
|
|
};
|
|
|
|
fexists "%project_path\paths.dnys" flag;
|
|
if (%flag, -eq, false) {
|
|
call create_path_file() => void;
|
|
};
|
|
|
|
exec "%project_path\paths.dnys";
|
|
|
|
aut_run "%APACHE_PATH\httpd.exe" "" "%APACHE_PATH" void;
|
|
aut_run "%MYSQL_PATH\mysqld" "--defaults-file=%MYSQL_PATH\my.ini --standalone" "%MYSQL_PATH" void;
|
|
|
|
aut_run "php" "asatru serve %SERVER_PORT" "%project_path" void;
|
|
aut_run "%server_url" "" "" void;
|
|
|
|
print "Running HortusFox...";
|
|
print "Press any key to shutdown this service";
|
|
|
|
pause;
|
|
|
|
sys { taskkill /F /IM php.exe };
|
|
sys { taskkill /F /IM mysqld.exe };
|
|
sys { taskkill /F /IM httpd.exe };
|