]> git.saurik.com Git - redis.git/commitdiff
INSTALL file added BETATESTING.txt removed
authorantirez <antirez@gmail.com>
Mon, 5 Jul 2010 18:37:20 +0000 (20:37 +0200)
committerantirez <antirez@gmail.com>
Mon, 5 Jul 2010 18:37:20 +0000 (20:37 +0200)
BETATESTING.txt [deleted file]
INSTALL [new file with mode: 0644]

diff --git a/BETATESTING.txt b/BETATESTING.txt
deleted file mode 100644 (file)
index 10fc941..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-This is a stable release, for beta testing make sure to download the latest source code from Git:
-
-    git clone git://github.com/antirez/redis.git
-
-It's also possibe to download the latest source code as a tarball:
-
-    http://github.com/antirez/redis/tree/master
-
-(use the download button)
diff --git a/INSTALL b/INSTALL
new file mode 100644 (file)
index 0000000..7c6635a
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,19 @@
+To compile Redis, do the following:
+
+    cd src; make
+
+The compilation will produce a redis-server binary.
+Copy this file where you want.
+
+Run the server using the following command line:
+
+    /path/to/redis-server
+
+This will start a Redis server with the default configuration.
+
+Otherwise if you want to provide your configuration use:
+
+    /path/to/redis-server /path/to/redis.conf
+
+You can find an example redis.conf file in the root directory
+of this source distribution.