europeana / europeana-portal-collections

Europeana Collections portal as a Rails + Blacklight application.

Home Page:http://www.europeana.eu/portal

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Europeana Portal with Collections

Build Status Security Maintainability Test Coverage

Europeana Portal with Collections as a Rails + Blacklight application.

Requirements

Installation

  • Download the source code
  • Run bundle install

Quick Start with Docker

  1. Install the gem bundle: bundle install
  2. Generate Docker configuration files: bundle exec bin/portal dockerize development You will be prompted to enter your Europeana API key. For another environment than development, e.g. profiling, use its name in this command.
  3. Bring it up: docker-compose up
  4. Setup the database: bundle exec rake db:setup
  5. Start the app: bundle exec foreman start
  6. Open the app: http://localhost:3000/

Test environment

To add a test environment to Docker:

  1. Generate Docker configuration files: bundle exec bin/portal dockerize test You will be prompted to enter your Europeana API key.
  2. Setup the database: RAILS_ENV=test bundle exec rake db:setup

Configuration

Environment variables

Most configuration settings are read from environment variables, described in detail in .env.example.

In development and test environments, these can be placed in a .env file in your application root.

Database

  1. Create a PostgreSQL database, and set its URL in the environment variable DATABASE_URL.
  2. Initialize the database: bundle exec rake db:setup

Testing

Create a test database and initialise with bundle exec rake db:test:prepare

Use the command bundle exec rspec from the project root to run the RSpec tests.

The integration tests use Firefox in headless mode.

Benchmarking

A script is included to run various benchmarks from derailed_benchmarks:

  • Size of bundled gems in production environment
  • Memory allocation and IPS of search results and record pages

First ensure that you have initialised a profiling environment, and have services running, e.g. by following the "Quick Start with Docker" instructions above.

Run benchmarks with: bin/benchmark

File storage

Files are stored using Paperclip. To configure it, create config/paperclip.yml with any options required to configure your file storage system, e.g. fog.

In a development environment, copy the provided sample from deploy/development/config/paperclip.yml.

Cache store

If the file config/redis.yml exists, the application will use Redis as a cache store.

Site Administration/Users

Site content and some other "configuration" is managed through the cms. The cms by default is available at [hostname]/portal/en/cms/

To login and perform certain actions, an admin user account is required. To set up an admin user, run:

bundle exec rake user:create EMAIL=you@example.com PASSWORD=REPLACE ROLE=admin

Example configurations for different environments are in deploy/.

Usage

The application consists of three components:

  1. Web: bundle exec puma -C config/puma.rb

By default, Puma will listen on the port defined in the PORT environment variable, or 3000 by default. 2. Worker: bundle exec rake jobs:work 3. Scheduler: bundle exec clockwork lib/clock.rb

The commands for these components are declared in the Procfile.

In production, if your environment supports it you can use this Procfile. Otherwise, you will need to configure deployment scripts to run each process.

In development, you can launch the application with all processes using foreman: foreman start

Docker for production

An additional Dockerfile is included, optimised for small image size, for publication to a Docker repository and use in production environments.

Configure version

export VERSION=3.7.0

Build

docker build \
       -f Dockerfile.production \
       -t europeana/portal-collections:${VERSION} .

Run

docker run \
       -p 8080:80 \
       --env-file=.env.production \
       europeana/portal-collections:${VERSION}

Publish

docker push europeana/portal-collections:${VERSION}

Contributing

Follow the Europeana Ruby development guide.

License

Licensed under the EUPL v1.2.

For full details, see LICENSE.md.

About

Europeana Collections portal as a Rails + Blacklight application.

http://www.europeana.eu/portal

License:European Union Public License 1.2


Languages

Language:Ruby 98.0%Language:Shell 0.9%Language:Haml 0.3%Language:Mustache 0.3%Language:HTML 0.2%Language:JavaScript 0.1%Language:CSS 0.1%Language:Dockerfile 0.0%Language:SCSS 0.0%