Skip to content

Commit

Permalink
Linked demo in README, fixed default setting in app.sample.php
Browse files Browse the repository at this point in the history
  • Loading branch information
hollodotme committed Dec 16, 2015
1 parent 2482674 commit bace0e2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 45 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ A web interface to read data from redis server(s)
## Requirements

* Webserver (nginx, apache2, etc.)
* PHP >= 5.5 with phpredis extension
* PHP >= 5.5 with phpredis extension (**compatible with php7**)

## Installation

Expand Down Expand Up @@ -66,6 +66,10 @@ server {

**That's it.**

## Public demo

**[Browse the demo](http://readis.hollo.me)**

## Screenshots

## Server selection
Expand Down
2 changes: 1 addition & 1 deletion config/app.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
*/

return [
'baseUrl' => '/',
'baseUrl' => '',
];
30 changes: 15 additions & 15 deletions config/servers.sample.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@
*/

return [
[
'name' => 'Redis server 1',
'host' => 'localhost',
'port' => 6379,
'timeout' => 2.5,
'retryInterval' => 100,
'auth' => null,
[
'name' => 'Local Redis 1',
'host' => 'localhost',
'port' => 6379,
'timeout' => 2.5,
'retryInterval' => 100,
'auth' => null,
],
// [
// 'name' => 'Redis server 2',
// 'host' => 'localhost',
// 'port' => 6380,
// 'timeout' => 2.5,
// 'retryInterval' => 100,
// 'auth' => null,
// ]
// [
// 'name' => 'Local Redis 2',
// 'host' => 'localhost',
// 'port' => 6380,
// 'timeout' => 2.5,
// 'retryInterval' => 100,
// 'auth' => null,
// ]
];
28 changes: 0 additions & 28 deletions tests/mass-insert.php

This file was deleted.

0 comments on commit bace0e2

Please sign in to comment.