From e501c748ac4dcaeefcf5fa357cda3b214765afc6 Mon Sep 17 00:00:00 2001
From: Per Cederqvist <ceder@lysator.liu.se>
Date: Wed, 9 Aug 2006 20:34:06 +0000
Subject: [PATCH] Document how to install likvid.

---
 README | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/README b/README
index b8e3569..223676b 100644
--- a/README
+++ b/README
@@ -1,3 +1,28 @@
+== Welcome to likvid
+
+To install:
+
+ - create config/database.yml from config/database.yml.template
+
+ - give MySQL access to the user you specify in database.yml, with
+   something similar to this:
+
+    grant all on likvid_development.* to rails;
+    grant all on likvid_test.* to rails;
+    grant all on likvid_production.* to rails;
+    create database likvid_development;
+    create database likvid_test;
+    create database likvid_production;
+
+ - run "rake migrate".  Edit RAILS_GEM_VERSION in
+   config/environment.rb if rake tells you to do so.
+
+ - run "script/server".
+
+ - point a browser at the URL that script/server prints.  That's all!
+
+Below is the default Rails README file.
+
 == Welcome to Rails
 
 Rails is a web-application and persistence framework that includes everything
-- 
GitLab