Skip to content

Commit

Permalink
Update README.md to include full list of dependecies and basic
Browse files Browse the repository at this point in the history
installation procedure.

Fix error in conf/lighttpd.conf.

Rename doc/depends to DEPENDS, update DEPENDS and INSTALL to refer to
README.md
  • Loading branch information
jmadler committed Nov 15, 2010
1 parent cdc9ec2 commit 618720a
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 5 deletions.
35 changes: 35 additions & 0 deletions README.md
Expand Up @@ -20,6 +20,41 @@ Its name got based on this conversation:
<Friend> Yes, Hawaiian, wiki, hula hula.
<SymKat> I think you have won.

Depedencies
-------------

### Programs
* PostgreSQL
* lighttpd
* Perl

### CPAN Modules
* local::lib
* strictures
* indirect
* Template
* Text::MultiMarkdown
* DBIx::Class
* DBIx::Class::Schema::Loader
* DBIx::Class::TimeStamp
* DBD::Pg
* Plack
* DateTime
* DateTime::Format::Pg
* File::MMagic
* FCGI::ProcManager

Installation
--------------

1. Install depedencies. To install the CPAN Modules, I recommend cpanminus.
1. Configure PostgreSQL:
1. Create a user and database.
1. Import conf/sql/schema-*.sql;
1. Edit configuration in conf/development.yaml to include authentication credentials.
1. Configure lighttpd based on the configuration file conf/lighttpd.conf
1. Run the app via command: plackup -s FCGI -l 127.0.0.1:8080 dispatch.fcgi

Author
---------
* [SymKat](http://symkat.com/)
Expand Down
4 changes: 2 additions & 2 deletions conf/lighttpd.conf
Expand Up @@ -8,11 +8,11 @@

$HTTP["host"] == "wiki" {
server.document-root = "/var/www"
fastcgi.server = ( "/" =>
fastcgi.server = ( "/" =>
((
"host" => "127.0.0.1",
"port" => 8080,
"allow-x-send-file" => "enable"
"allow-x-send-file" => "enable",
"check-local" => "disable",
))
)
Expand Down
1 change: 1 addition & 0 deletions doc/DEPENDS
@@ -0,0 +1 @@
See ../README.md
2 changes: 1 addition & 1 deletion doc/INSTALL
@@ -1 +1 @@
TODO: Document How To Install
See ../README.md
2 changes: 0 additions & 2 deletions doc/depends

This file was deleted.

0 comments on commit 618720a

Please sign in to comment.