Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions frameworks/PHP/laravel/benchmark_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
"notes": "",
"versus": "php"
},
"pripple": {
"ripple": {
"json_url": "/json",
"db_url": "/db",
"query_url": "/queries/",
Expand All @@ -154,11 +154,11 @@
"language": "PHP",
"flavor": "PHP8.3",
"orm": "Full",
"platform": "PRipple",
"platform": "Ripple",
"webserver": "PServer",
"os": "Linux",
"database_os": "Linux",
"display_name": "laravel-pripple",
"display_name": "laravel-ripple",
"notes": "",
"versus": "php"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ RUN mkdir -p bootstrap/cache \
storage/framework/views \
storage/framework/cache

# Configure
RUN echo "PRP_HTTP_LISTEN=http://0.0.0.0:8080" >> .env
RUN echo "PRP_HTTP_COUNT=64" >> .env
RUN echo "PRP_HTTP_WORKERS=64" >> .env
RUN echo "PRP_HTTP_RELOAD=0" >> .env
RUN echo "PRP_HTTP_SANDBOX=1" >> .env

# Configure
RUN composer install --quiet
RUN php artisan optimize

RUN composer require cclilshy/p-ripple-drive --quiet
RUN composer update --quiet
RUN php artisan optimize

# Start
EXPOSE 8080

ENTRYPOINT ["php","artisan","p:server","start"]
ENTRYPOINT ["php","artisan","ripple:server","start"]
Loading