forked from Wachhund/myimouto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
5 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
/config/config.php | ||
/config/database.yml | ||
/log/* | ||
/public/assets | ||
/public/data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
namespace MyImouto; | ||
|
||
/** | ||
* Place your custom configuration here, instead | ||
* of modifying the default_config.php file. | ||
* | ||
* Values placed here will overwrite the values in the parent class. | ||
* List the properties you want to overwrite. | ||
*/ | ||
class LocalConfig extends DefaultConfig | ||
{ | ||
public $app_name = 'Delishbooru'; | ||
|
||
public $server_host = 'delishbooru.com'; | ||
|
||
public $url_base = 'http://delishbooru.com'; | ||
|
||
public $admin_contact = 'admin@myimouto'; | ||
|
||
public $download_filename_prefix = "delish"; | ||
|
||
public $starting_level = 20; | ||
|
||
public $member_post_limit = 20; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copy this to "database.yml" and adjust the fields accordingly. | ||
# Only works with mysql adapter. | ||
login: &login | ||
adapter: mysql | ||
host: 127.0.0.1 | ||
username: danbo | ||
password: xxx | ||
|
||
development: | ||
<<: *login | ||
database: myimouto_dev | ||
|
||
production: | ||
<<: *login | ||
database: danbo |
Binary file not shown.