2
0
mirror of https://github.com/moebooru/moebooru synced 2025-08-31 14:05:14 +00:00
2019-08-17 17:51:59 +09:00
2019-08-17 15:47:36 +09:00
2019-08-17 17:03:23 +09:00
2019-08-17 17:03:23 +09:00
2019-08-17 17:03:23 +09:00
2018-01-31 01:18:44 +09:00
2019-01-05 07:02:46 +09:00
2019-08-17 17:44:04 +09:00
2014-11-20 17:50:48 +09:00
2014-11-20 17:50:48 +09:00
2016-05-24 01:46:19 +09:00
2019-08-17 17:51:59 +09:00
2017-04-02 17:06:10 +09:00
2019-08-17 17:03:23 +09:00
2019-08-17 17:03:23 +09:00
2017-03-25 18:02:01 +09:00
2014-11-20 17:50:29 +09:00
2018-03-15 04:01:35 +09:00

Code Climate

Moebooru

An image board.

Requirements

As this is ongoing project, there will be more changes on requirement as this project goes. Currently this application is developed using:

  • Ruby 2.5
  • PostgreSQL 10.1
  • Bundler gem
  • ImageMagick
  • And various other requirement for the gems (check Gemfile for the list)

On RHEL5 (and 6), it goes like this (outdated list):

  • gcc
  • gcc-c++
  • ImageMagick
  • jhead
  • libxslt-devel
  • libyaml-devel
  • git
  • openssl-devel
  • pcre-devel
  • postgresql94-devel
  • postgresql94-server
  • readline-devel

Base, EPEL, and postgresql official repositories contain all the requirements.

Installation

Database Setup

After initializing PostgreSQL database, create user for moebooru with createdb privilege:

postgres# create user moebooru_user with password 'the_password' createdb;

Rails Setup

  • Run bundle install
  • Create config/database.yml and config/local_config.rb
  • Initialize database with bundle exec rake db:reset (there will be some errors reported which is expected)
  • Run bundle exec rake db:migrate
  • Start the server (bundle exec unicorn or bundle exec puma if using JRuby/Rubinius)

Configuration

See config/local_config.rb.example. Additionally, as I move to ENV-based configuration, here's the list of currently supported ENV variables:

  • MB_DATABASE_URL: sets database connection configuration. Syntax: postgres://<user>(:<pass>)@<host>(:<port>)/<dbname>.
  • MB_MEMCACHE_SERVERS: addresses of memcache servers. Separated by comma.
  • MB_PIWIK_HOST: sets the host this application will attempt to contact a Piwik installation at. Defaults to false to not use Piwik if unset.
  • MB_PIWIK_ID: sets the Site ID this application will send analytics data for.
  • MB_THREADS: sets number of threads this application is running. Currently used to determine number of connection pool for memcached. Defaults to 1 if unset.

Plans

  • Bug fixes
  • Documentation
  • And more!
Description
No description provided
Readme ISC 60 MiB
Languages
Ruby 49.4%
HTML 21.6%
CoffeeScript 19.8%
PLpgSQL 5.4%
Less 2.4%
Other 1.4%