Skip to content

Commit

Permalink
Update config.php
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Ashworth committed Apr 29, 2012
1 parent dc79ce1 commit 11df9f1
Showing 1 changed file with 3 additions and 26 deletions.
29 changes: 3 additions & 26 deletions config.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,13 @@
// Configure lowcarb

/* Development config */
$config->url = "//blog.dev/";
$config->salt = "cardiffschoolofcomputerscience";
$config->url = "//something.dev/";
$config->salt = "somesalt";
$config->db = array(
"host" => "localhost"
, "user" => "root"
, "password" => "root"
, "db" => "lowcarb"
);
$config->routes = array(
"" => "index"
, "on" => "on"
, "write" => "write"
, "edit" => "edit"
, "logout" => "out"
, "error" => "error"
, "comment" => "comment"
, "delete" => "delete"
);

/* Production config */
$config->environment('production');

$config->url = "//project.cs.cf.ac.uk/T.Ashworth/blog/";
$config->prefix = "/T.Ashworth/blog";
$config->salt = "cardiffschoolofcomputerscience";
$config->db = array(
"host" => "ephesus.cs.cf.ac.uk"
, "user" => "c1103808"
, "password" => "howbau"
, "db" => "c1103808"
, "db" => "something"
);
$config->routes = array(
"" => "index"
Expand Down

0 comments on commit 11df9f1

Please sign in to comment.