-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A quick demo would be useful #211
Comments
Yes, a Docker-based demo with everything working including the web-UI would be great ! |
The essence of mine is a LAMP sandbox to play / develop with php, so not much more than what's needed to take SPX for a run. In any case, your choice. |
I'm struggling to run PHP-SPX even more basically than the big Docker repo in this issue. I'm using a very simple FROM --platform=linux/amd64 php:8.3
RUN apt update \
&& apt install zlib1g-dev git -y \
&& cd / \
&& git clone https://github.com/NoiseByNorthwest/php-spx.git \
&& cd php-spx \
&& git checkout release/latest \
&& phpize \
&& ./configure \
&& make \
&& make install with a
And I'm running the PHP built-in web server like so: docker build --platform linux/amd64 -t phpspx -f dockerfile .
docker run --name phpbox --rm -v "./app:/app" -p 8000:8000 --platform linux/amd64 phpspx php -S 0.0.0.0:8000 -t /app But when I browse to http://localhost:8000/?SPX_KEY=dev&SPX_UI_URI=/, I just get the I don't know what else to try. Thanks. |
Is there something logged in |
Got it to work, thanks. Updated your readme here - #257 |
For new people discovering SPX, taking it for a test drive is quite cumbersome (besides the link the analysis screen) and my proposal is for a quick demo to be made available. I have a docker image which embeds SPX that could be used for that purpose, however I'm also open to any other option you suggest.
The text was updated successfully, but these errors were encountered: