Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moebooru/moebooru
Moebooru, a fork of danbooru1 that has been heavily modified
https://github.com/moebooru/moebooru
coffeescript hacktoberfest imagemagick postgresql ruby rubyonrails
Last synced: 27 days ago
JSON representation
Moebooru, a fork of danbooru1 that has been heavily modified
- Host: GitHub
- URL: https://github.com/moebooru/moebooru
- Owner: moebooru
- License: isc
- Created: 2014-06-04T07:17:19.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-09-29T12:09:12.000Z (about 1 month ago)
- Last Synced: 2024-09-30T07:05:45.655Z (about 1 month ago)
- Topics: coffeescript, hacktoberfest, imagemagick, postgresql, ruby, rubyonrails
- Language: Ruby
- Homepage:
- Size: 51.7 MB
- Stars: 522
- Watchers: 25
- Forks: 80
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-acg - Moebooru - Fork of danbooru1 that has been heavily modified. Used on [yande.re](https://yande.re/) , [Konachan.com](https://konachan.com/). [English] (Image Board)
README
[![Code Climate](https://codeclimate.com/github/moebooru/moebooru.png)](https://codeclimate.com/github/moebooru/moebooru)
Moebooru
========An image board.
* [Source Repository](https://github.com/moebooru/moebooru)
Requirements
------------As this is ongoing project, there will be more changes on requirement as this project goes. Currently this application is developed using:
* Ruby (3.3 or later)
* PostgreSQL (15 or later)
* Bundler gem
* node.js (20.0 or later)
* ImageMagick
* And various other requirement for the gems (check `Gemfile` for the list)On RHEL, it goes like this (untested):
* ImageMagick
* gcc
* gcc-c++
* git
* jhead
* libxslt-devel
* libyaml-devel
* nodejs
* openssl-devel
* pcre-devel
* postgresql15-devel
* postgresql15-serverBase, EPEL, dnf module, 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 (development)
* Run `bundle install`
* Create `config/database.yml` and `config/local_config.rb`
* Initialize database with `bundle exec rake db:reset`
* Run `bundle exec rake db:migrate`
* Start the server (`bundle exec rails server`)
* Start asset builder server (`npm run build -- --watch`)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://(:)@(:)/`.
- `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!