Go to file
2019-07-30 21:05:27 -07:00
.circleci remove docker compose install 2019-01-24 17:43:34 -08:00
app Fix iqdb update/remove jobs 2019-07-30 21:05:27 -07:00
bin Replace google cloud with ElasticSearch 2019-05-16 16:29:08 -07:00
config So yarn is removing this, and it's known to be broken 2019-07-25 09:22:24 -07:00
db Add seeds 2019-07-19 04:23:31 -07:00
doc
lib maintenance: add rake tasks for maintenance jobs. 2018-10-09 20:11:24 -05:00
public Partial of new uploader 2019-07-06 14:15:43 -07:00
script Convert platinum -> contributor for user rank 2019-06-29 12:06:13 -07:00
test Convert builder -> janitor for user rank 2019-06-29 12:58:28 -07:00
tmp
vagrant add elasticsearch to vagrant setup 2019-03-24 08:45:44 -04:00
.babelrc
.env
.eslintrc.yml
.gitignore Vagrant initial 2019-02-16 12:38:16 -05:00
.postcssrc.yml
.ruby-version Initial setup script changes as required by danbooru. 2019-01-31 12:27:40 -08:00
Capfile
config.ru
Gemfile Use updated dtext and deferred posts 2019-05-01 13:17:08 -07:00
Gemfile.lock Update lockfile with new dtext parser version 2019-05-07 14:26:21 -07:00
INSTALL_DEV.ubuntu Initial setup script changes as required by danbooru. 2019-01-31 12:27:40 -08:00
INSTALL.debian Initial setup script changes as required by danbooru. 2019-01-31 12:27:40 -08:00
LICENSE
package.json Move post uploader to vue.js and inline it 2019-07-11 20:19:56 -07:00
Procfile add indexing jobs 2019-03-24 08:45:44 -04:00
Rakefile
README.md update readme 2019-02-16 17:46:28 -05:00
Vagrantfile tweaks 2019-02-16 21:11:59 -05:00
yarn.lock Bump jquery from 3.3.1 to 3.4.1 2019-07-12 03:42:50 +00:00

Installation (Easy mode - For development environments)

Prerequisites

  • Latest version of VirtualBox and the VM Extension Pack (download)
  • Latest version of Vagrant (download)

Installation

  1. Download and install the prerequisites
  2. Open Command Prompt/Terminal and run the following commands:
    vagrant plugin install vagrant-hostmanager  
    vagrant plugin install vagrant-bindfs  
    vagrant plugin install vagrant-vbguest
    
  3. Download and extract the repo
  4. cd into the repo using Command Prompt/Terminal
  5. Run the following command: vagrant up
  6. This would be a good time to rewatch your favorite TV series installment, cook & have breakfast/lunch/dinner, walk the dog, clean your room, etc.
    By the time you get back the install will surely have completed.1
  7. ???
  8. Profit!

1 If the install did not finish by the time an activity is complete please select another activity to avoid crippling boredom.

Installation

It is recommended that you install Danbooru on a Debian-based system since most of the required packages are available on APT. Danbooru has been successfully installed on Fedora, CentOS, FreeBSD, and OS X. The INSTALL.debian install script is straightforward and should be simple to adapt for other platforms.

For best performance, you will need at least 256MB of RAM for PostgreSQL and Rails. The memory requirement will grow as your database gets bigger.

On production Danbooru uses PostgreSQL 9.4, but any 9.x release should work.

Use your operating system's package management system whenever possible. This will simplify the process of installing init scripts, which will not always happen when compiling from source.

Troubleshooting

These instructions won't work for everyone. If your setup is not working, here are the steps I usually recommend to people:

  1. Test the database. Make sure you can connect to it using psql. Make sure the tables exist. If this fails, you need to work on correctly installing PostgreSQL, importing the initial schema, and running the migrations.

  2. Test the Rails database connection by using rails console. Run Post.count to make sure Rails can connect to the database. If this fails, you need to make sure your Danbooru configuration files are correct.

  3. Test Nginx to make sure it's working correctly. You may need to debug your Nginx configuration file.

  4. Check all log files.

Services

Danbooru employs numerous external services to delegate some functionality.

For development purposes, you can just run mocked version of these services. They're available in scrtip/mock_services and can be started automatically using Foreman and the provided Procfile.

Amazon Web Services

In order to enable the following features, you will need an AWS SQS account:

  • Pool versions
  • Post versions
  • IQDB
  • Saved searches
  • Related tags

Google APIs

The following features requires a Google API account:

  • Bulk revert
  • Post versions report

IQDB Service

IQDB integration is delegated to the IQDBS service.

Archive Service

In order to access versioned data for pools and posts you will need to install and configure the Archives service.

Reportbooru Service

The following features are delegated to the Reportbooru service:

  • Related tags
  • Missed searches report
  • Popular searches report
  • Favorite searches
  • Upload trend graphs

Recommender Service

Post recommendations require the Recommender service.

Cropped Thumbnails

There's optional support for cropped thumbnails. This relies on installing libvips-8.6 or higher and setting Danbooru.config.enable_image_cropping to true.