├── .gitignore ├── LICENSE ├── README.md ├── conf-reset.js ├── conf-restore ├── apache-httpd.conf ├── nginx-nginx.conf ├── php-php.ini ├── phpfpm-php.ini └── phpmyadmin-config.inc.php ├── config ├── app.config.json ├── check_resource.json ├── cronjob.json ├── env.json ├── tunnels.json └── watcher.json ├── main.js ├── package.json ├── postcss.config.js ├── public_html ├── apache_web │ ├── icon.png │ └── index.php ├── go_web │ └── index.go ├── nginx_web │ ├── icon.png │ └── index.php ├── node_web │ └── index.js ├── python_web │ └── index.py └── ruby_web │ └── index.rb ├── resources ├── config │ ├── app.config.json │ ├── check_resource.json │ ├── cronjob.json │ ├── env.json │ ├── tunnels.json │ └── watcher.json └── resource.txt ├── runtime ├── apache.js ├── autoInstaller.js ├── cmd.js ├── cronjob.js ├── go.js ├── monitor.js ├── mysql.js ├── nginx.js ├── node.js ├── pm2.js ├── python.js ├── resourceDownload.js └── ruby.js ├── screen ├── browserWindow.js ├── docsWindow.js ├── indexWindow.js └── menu │ └── mainMenu.js ├── tailwind.config.js ├── templates ├── browser.html ├── css │ ├── styles.css │ └── tailwind.css ├── docs.html ├── docs │ ├── apache.md │ ├── cakephp.md │ ├── codeIgniter.md │ ├── cronjob.md │ ├── env.md │ ├── ftp.md │ ├── go.md │ ├── introduction.md │ ├── joomla.md │ ├── laravel.md │ ├── nginx.md │ ├── nodejs.md │ ├── pm2.md │ ├── port.md │ ├── python.md │ ├── ruby.md │ ├── slim.md │ ├── watcher.md │ ├── wordpress.md │ └── yii.md ├── images │ ├── icon.icns │ ├── icon.png │ ├── icon │ │ ├── apache-dark.svg │ │ ├── apache.svg │ │ ├── cmd-dark.svg │ │ ├── cmd.svg │ │ ├── cron-dark.svg │ │ ├── cron.svg │ │ ├── go-dark.svg │ │ ├── go.svg │ │ ├── mysql-dark.svg │ │ ├── mysql.svg │ │ ├── nginx-dark.svg │ │ ├── nginx.svg │ │ ├── nodejs-dark.svg │ │ ├── nodejs.svg │ │ ├── python-dark.svg │ │ ├── python.svg │ │ ├── ruby-dark.svg │ │ └── ruby.svg │ └── ss.jpg ├── index.html ├── js │ ├── app.js │ ├── browser.js │ ├── chart.js │ └── renderer.js └── progress.html └── utils ├── backupResource.js ├── checkResource.js ├── checkUpdate.js ├── env.js ├── importResource.js ├── ipc.js ├── pathResource.js ├── port.js ├── preload.js ├── tunnels.js ├── watcher.js └── worker.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/README.md -------------------------------------------------------------------------------- /conf-reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-reset.js -------------------------------------------------------------------------------- /conf-restore/apache-httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-restore/apache-httpd.conf -------------------------------------------------------------------------------- /conf-restore/nginx-nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-restore/nginx-nginx.conf -------------------------------------------------------------------------------- /conf-restore/php-php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-restore/php-php.ini -------------------------------------------------------------------------------- /conf-restore/phpfpm-php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-restore/phpfpm-php.ini -------------------------------------------------------------------------------- /conf-restore/phpmyadmin-config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/conf-restore/phpmyadmin-config.inc.php -------------------------------------------------------------------------------- /config/app.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/config/app.config.json -------------------------------------------------------------------------------- /config/check_resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "CHECK_RESOURCE": true 3 | } -------------------------------------------------------------------------------- /config/cronjob.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /config/env.json: -------------------------------------------------------------------------------- 1 | { 2 | "PATH_SYSTEM": false 3 | } -------------------------------------------------------------------------------- /config/tunnels.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /config/watcher.json: -------------------------------------------------------------------------------- 1 | { 2 | "WATCHER": true 3 | } -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public_html/apache_web/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/apache_web/icon.png -------------------------------------------------------------------------------- /public_html/apache_web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/apache_web/index.php -------------------------------------------------------------------------------- /public_html/go_web/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/go_web/index.go -------------------------------------------------------------------------------- /public_html/nginx_web/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/nginx_web/icon.png -------------------------------------------------------------------------------- /public_html/nginx_web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/nginx_web/index.php -------------------------------------------------------------------------------- /public_html/node_web/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/node_web/index.js -------------------------------------------------------------------------------- /public_html/python_web/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/python_web/index.py -------------------------------------------------------------------------------- /public_html/ruby_web/index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/public_html/ruby_web/index.rb -------------------------------------------------------------------------------- /resources/config/app.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/resources/config/app.config.json -------------------------------------------------------------------------------- /resources/config/check_resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "CHECK_RESOURCE": true 3 | } -------------------------------------------------------------------------------- /resources/config/cronjob.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /resources/config/env.json: -------------------------------------------------------------------------------- 1 | { 2 | "PATH_SYSTEM": false 3 | } -------------------------------------------------------------------------------- /resources/config/tunnels.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /resources/config/watcher.json: -------------------------------------------------------------------------------- 1 | { 2 | "WATCHER": true 3 | } -------------------------------------------------------------------------------- /resources/resource.txt: -------------------------------------------------------------------------------- 1 | Place extracted files -------------------------------------------------------------------------------- /runtime/apache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/apache.js -------------------------------------------------------------------------------- /runtime/autoInstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/autoInstaller.js -------------------------------------------------------------------------------- /runtime/cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/cmd.js -------------------------------------------------------------------------------- /runtime/cronjob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/cronjob.js -------------------------------------------------------------------------------- /runtime/go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/go.js -------------------------------------------------------------------------------- /runtime/monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/monitor.js -------------------------------------------------------------------------------- /runtime/mysql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/mysql.js -------------------------------------------------------------------------------- /runtime/nginx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/nginx.js -------------------------------------------------------------------------------- /runtime/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/node.js -------------------------------------------------------------------------------- /runtime/pm2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/pm2.js -------------------------------------------------------------------------------- /runtime/python.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/python.js -------------------------------------------------------------------------------- /runtime/resourceDownload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/resourceDownload.js -------------------------------------------------------------------------------- /runtime/ruby.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/runtime/ruby.js -------------------------------------------------------------------------------- /screen/browserWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/screen/browserWindow.js -------------------------------------------------------------------------------- /screen/docsWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/screen/docsWindow.js -------------------------------------------------------------------------------- /screen/indexWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/screen/indexWindow.js -------------------------------------------------------------------------------- /screen/menu/mainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/screen/menu/mainMenu.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /templates/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/browser.html -------------------------------------------------------------------------------- /templates/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/css/styles.css -------------------------------------------------------------------------------- /templates/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/css/tailwind.css -------------------------------------------------------------------------------- /templates/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs.html -------------------------------------------------------------------------------- /templates/docs/apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/apache.md -------------------------------------------------------------------------------- /templates/docs/cakephp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/cakephp.md -------------------------------------------------------------------------------- /templates/docs/codeIgniter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/codeIgniter.md -------------------------------------------------------------------------------- /templates/docs/cronjob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/cronjob.md -------------------------------------------------------------------------------- /templates/docs/env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/env.md -------------------------------------------------------------------------------- /templates/docs/ftp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/ftp.md -------------------------------------------------------------------------------- /templates/docs/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/go.md -------------------------------------------------------------------------------- /templates/docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/introduction.md -------------------------------------------------------------------------------- /templates/docs/joomla.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/joomla.md -------------------------------------------------------------------------------- /templates/docs/laravel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/laravel.md -------------------------------------------------------------------------------- /templates/docs/nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/nginx.md -------------------------------------------------------------------------------- /templates/docs/nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/nodejs.md -------------------------------------------------------------------------------- /templates/docs/pm2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/pm2.md -------------------------------------------------------------------------------- /templates/docs/port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/port.md -------------------------------------------------------------------------------- /templates/docs/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/python.md -------------------------------------------------------------------------------- /templates/docs/ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/ruby.md -------------------------------------------------------------------------------- /templates/docs/slim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/slim.md -------------------------------------------------------------------------------- /templates/docs/watcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/watcher.md -------------------------------------------------------------------------------- /templates/docs/wordpress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/wordpress.md -------------------------------------------------------------------------------- /templates/docs/yii.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/docs/yii.md -------------------------------------------------------------------------------- /templates/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon.icns -------------------------------------------------------------------------------- /templates/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon.png -------------------------------------------------------------------------------- /templates/images/icon/apache-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/apache-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/apache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/apache.svg -------------------------------------------------------------------------------- /templates/images/icon/cmd-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/cmd-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/cmd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/cmd.svg -------------------------------------------------------------------------------- /templates/images/icon/cron-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/cron-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/cron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/cron.svg -------------------------------------------------------------------------------- /templates/images/icon/go-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/go-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/go.svg -------------------------------------------------------------------------------- /templates/images/icon/mysql-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/mysql-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/mysql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/mysql.svg -------------------------------------------------------------------------------- /templates/images/icon/nginx-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/nginx-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/nginx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/nginx.svg -------------------------------------------------------------------------------- /templates/images/icon/nodejs-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/nodejs-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/nodejs.svg -------------------------------------------------------------------------------- /templates/images/icon/python-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/python-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/python.svg -------------------------------------------------------------------------------- /templates/images/icon/ruby-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/ruby-dark.svg -------------------------------------------------------------------------------- /templates/images/icon/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/icon/ruby.svg -------------------------------------------------------------------------------- /templates/images/ss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/images/ss.jpg -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/js/app.js -------------------------------------------------------------------------------- /templates/js/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/js/browser.js -------------------------------------------------------------------------------- /templates/js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/js/chart.js -------------------------------------------------------------------------------- /templates/js/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/js/renderer.js -------------------------------------------------------------------------------- /templates/progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/templates/progress.html -------------------------------------------------------------------------------- /utils/backupResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/backupResource.js -------------------------------------------------------------------------------- /utils/checkResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/checkResource.js -------------------------------------------------------------------------------- /utils/checkUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/checkUpdate.js -------------------------------------------------------------------------------- /utils/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/env.js -------------------------------------------------------------------------------- /utils/importResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/importResource.js -------------------------------------------------------------------------------- /utils/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/ipc.js -------------------------------------------------------------------------------- /utils/pathResource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/pathResource.js -------------------------------------------------------------------------------- /utils/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/port.js -------------------------------------------------------------------------------- /utils/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/preload.js -------------------------------------------------------------------------------- /utils/tunnels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/tunnels.js -------------------------------------------------------------------------------- /utils/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/watcher.js -------------------------------------------------------------------------------- /utils/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fitri-hy/FhyServe/HEAD/utils/worker.js --------------------------------------------------------------------------------