This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
as an update - the issue is not specific to debian and it is not clear that the problem lies in gnu-smalltalk - the same versions of gst-browser run fine on some distros but not on others | |
================ SUMMARY ================ | |
* gst-browser fails to run on debian, ubuntu - neither from binary packages nor compiled from git source | |
* gst-browser runs as expected on parabola from the both binary packages and compiled from git source | |
* gst-browser fails to run on fedora from binary package but runs as expected when compiled from git source | |
* gst-browser runs as expected on opensuse from (un-maintained) binary packages but fails to run when compiled from git source | |
* the REPL appears to be working correctly in all cases |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// bootstrap/react.php | |
// Remember, we need to do first: composer require react/react! | |
$app = include('app.php'); | |
$host = 'localhost'; | |
$port = 9000; | |
$reactApp = function (\React\Http\Request $request, \React\Http\Response $response) use ($app, $host, $port) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# install required packages | |
# | |
apt-get install apache2 git-core gitweb | |
# | |
# create folder to host the repositories | |
# |