Sequenzia/README.md

37 lines
2.1 KiB
Markdown
Raw Normal View History

2013-10-27 20:49:58 +01:00
MyImouto
========
MyImouto is a port of [Moebooru](https://github.com/moebooru/moebooru) to PHP and MySQL. In order for this to be an actual port (or as close as possible), MyImouto uses a custom framework that is based on Ruby on Rails, thus the code from Moebooru is transcribed to PHP with some modifications here and there to fit the target language and framework.
MyImouto features some changes and additions. More details can be found in the Wiki.
2013-10-27 20:49:58 +01:00
Requirements
------------
* Requires PHP 5.4+. It was developed under PHP 5.4.7 and MySQL v5.5.27.
* Must have PHP libraries are GD2 (for image processing), PDO (database) and cURL (for both Image search and Search external data features).
* Recommended libraries are Imagick and Memcached.
2013-12-02 03:26:48 +01:00
* Both Git and Composer are needed for installation/update. How to install Composer can be found [here](http://getcomposer.org/download/) and/or [here](http://getcomposer.org/doc/00-intro.md).
2013-12-07 21:37:27 +01:00
* If running under Apache, the Rewrite mod must be enabled. Also, to serve gzipped assets (css and js files), the Headers mod is needed.
2013-10-27 20:49:58 +01:00
2013-10-27 20:49:58 +01:00
Installation
------------
For an explained, step-by-step guide, please go [here](https://github.com/myimouto/myimouto/wiki/How-to-install).
2013-12-07 21:37:27 +01:00
* Install system dependencies: `composer install`.
* Create a database for the booru.
* Create `config/config.php` and `config/database.yml` by copying their respective _.example_ files.
* Set your database configuration in `config/database.yml`.
* Configure the booru by editing `config/config.php`. For a minimum configuration, both *$server_host* and *$url_base* options must be correctly configured.
2013-12-07 21:37:27 +01:00
* Run the installer: `php install.php`. Enter a name and password for the admin account when asked, then wait for the installation to finish.
* Finally, point the document root of your web server to the `/public` folder. That's where the index.php file is.
2013-11-19 18:39:51 +01:00
Updating
--------
2013-10-27 20:49:58 +01:00
2013-12-07 21:37:27 +01:00
Every time you update the files with `git remote update` or something, also run `composer update` to update dependencies, specially for the framework, and also run `php config/boot.php db:migrate` to run database migrations (if any).