Sequenzia LTS (MyImouto LTS - ACR Rev.) - Mirror http://code.acr.moe/kazari/sequenzia
Go to file
Yukimi Kazari aea14dd3df Update .gitignore 2016-09-10 13:42:16 -04:00
app Added Webm / MP4 Support 2016-09-09 04:56:51 -04:00
config Hopefuly fixes #147; made tag sub delay configurable 2016-07-30 13:45:57 -05:00
db Fixed #139 2016-07-30 04:01:27 -05:00
lib Fixes to #81 2014-06-01 19:08:35 +09:00
log more files 2013-10-26 22:34:21 -05:00
public Add support for HD Icons 2016-09-10 13:38:47 -04:00
script/daemons more files 2013-10-26 22:34:21 -05:00
tmp more files 2013-10-26 22:34:21 -05:00
vendor more updating 2013-11-08 11:47:26 -05:00
.gitignore Update .gitignore 2016-09-10 13:42:16 -04:00
LICENSE license, composer config 2013-10-27 00:35:20 -05:00
README.md Update README.md 2016-09-09 03:29:51 -04:00
composer.json Updated railsphp versions 2016-05-21 01:59:34 -05:00
composer.lock Updated composer.lock 2016-08-21 18:49:37 -05:00
install.php Added compiled assets 2016-05-21 02:07:18 -05:00

README.md

MyImouto

MyImouto is a clone of Moebooru for PHP and MySQL. In order for this clone to be as exact as possible, MyImouto uses a custom framework that is based on Ruby on Rails, thus the code from Moebooru was transcribed to PHP with some small modifications to fit the target language and framework.

MyImouto development stopped around 2014. By then, the port was mostly complete, with some bugs here and there. For more information about its features, changes and additions compared to Moebooru, please refer to the About MyImouto wiki. This Project has now been taken in by ACR to support the LTS project Sequenzia Project

Requirements

  • PHP 5.4 or higher.
  • MySQL v5.5 or higher.
  • PHP libraries:
    • GD2
    • PDO
    • cURL
    • Imagick (recommended)
    • Memcached (recommended)
  • Composer (Dependency Management for PHP).
  • If running under Apache, the Rewrite mod must be enabled. Also, to serve gzipped CSS and JS files, the Headers mod is needed.

Installation

For an explained, step-by-step guide, please check the How to Install (Decentralized) or How to Install (Centralized) guide. Otherwise, here's the quick guide for advanced users:

  • 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 set.
  • 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.

Updating

Every time you update the files, don't forget to 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).