# FabManager FabManager is the FabLab management solution. It is web-based, open-source and totally free. ##### Table of Contents 1. [Software stack](#software-stack) 2. [Contributing](#contributing) 3. [Setup a production environment](#setup-a-production-environment) 4. [Setup a development environment](#setup-a-development-environment)
4.1. [General Guidelines](#general-guidelines)
4.2. [Environment Configuration](#environment-configuration) 5. [PostgreSQL](#postgresql)
5.1. [Install PostgreSQL 9.4 on Ubuntu/Debian](#postgresql-on-debian)
5.2. [Install and launch PostgreSQL on MacOS X](#postgresql-on-macosx)
5.3. [Setup the FabManager database in PostgreSQL](#setup-fabmanager-in-postgresql)
5.4. [PostgreSQL Limitations](#postgresql-limitations) 6. [ElasticSearch](#elasticsearch)
6.1. [Install ElasticSearch on Ubuntu/Debian](#elasticsearch-on-debian)
6.2. [Install ElasticSearch on MacOS X](#elasticsearch-on-macosx)
6.3. [Setup ElasticSearch for the FabManager](#setup-fabmanager-in-elasticsearch)
6.4. [Backup and Restore](#backup-and-restore-elasticsearch) 7. [Internationalization (i18n)](#i18n)
7.1. [Translation](#i18n-translation)
7.1.1. [Front-end translations](#i18n-translation-front)
7.1.2. [Back-end translations](#i18n-translation-back)
7.2. [Configuration](#i18n-configuration)
7.2.1. [Settings](#i18n-settings)
7.2.2. [Applying changes](#i18n-apply) 8. [Open Projects](#open-projects) 9. [Plugins](#plugins) 10. [Single Sign-On](#sso) 11. [Known issues](#known-issues) 12. [Related Documentation](#related-documentation) ## Software stack FabManager is a Ruby on Rails / AngularJS web application that runs on the following software: - Ubuntu LTS 14.04+ / Debian 8+ - Ruby 2.3 - Git 1.9.1+ - Redis 2.8.4+ - Sidekiq 3.3.4+ - Elasticsearch 1.7 - PostgreSQL 9.4 ## Contributing Contributions are welcome. Please read [the contribution guidelines](CONTRIBUTING.md) for more information about the contribution process. **IMPORTANT**: **do not** update Arshaw/fullCalendar.js as it contains a hack for the remove-event cross. ## Setup a production environment To run fab-manager as a production application, this is highly recommended to use [Docker](https://www.docker.com/). The procedure to follow is described in the [docker readme](docker/README.md). ## Setup a development environment In you only intend to run fab-manager on your local machine for testing purposes or to contribute to the project development, you can set it up with the following procedure. ### General Guidelines 1. Install RVM with the ruby version specified in the [.ruby-version file](.ruby-version). For more details about the process, Please read the [official RVM documentation](http://rvm.io/rvm/install). 2. Retrieve the project from Git ```bash git clone https://github.com/LaCasemate/fab-manager.git ``` 3. Install the software dependencies. First install [PostgreSQL](#postgresql) and [ElasticSearch](#elasticsearch) as specified in their respective documentations. Then install the other dependencies: - For Ubuntu/Debian: ```bash sudo apt-get install libpq-dev redis-server imagemagick ``` - For MacOS X: ```bash brew install redis imagemagick ``` 4. Init the RVM instance and check it was correctly configured ```bash cd fab-manager rvm current # Must print ruby-X.Y.Z@fab-manager (where X.Y.Z match the version in .ruby-version) ``` 5. Install bundler in the current RVM gemset ```bash gem install bundler ``` 6. Install the required ruby gems ```bash bundle install ``` 7. Create the default configuration files **and configure them!** (see the [Environment Configuration](#environment-configuration) section) ```bash cp config/database.yml.default config/database.yml cp config/application.yml.default config/application.yml vi config/application.yml # or use your favorite text editor instead of vi (nano, ne...) ``` 8. Build the database. You may have to follow the steps described in [the PostgreSQL configuration chapter](#setup-fabmanager-in-postgresql) before, if you don't already had done it. **Warning**: **NO NOT** run `rake db:setup` instead of these commands, as this will not run some required raw SQL instructions. ```bash rake db:create rake db:migrate rake db:seed ``` 9. Create the pids folder used by Sidekiq. If you want to use a different location, you can configure it in `config/sidekiq.yml` ```bash mkdir -p tmp/pids ``` 10. Start the development web server ```bash foreman s -p 3000 ``` 11. You should now be able to access your local development FabManager instance by accessing `http://localhost:3000` in your web browser. 12. You can login as the default administrator using the following credentials: - user: admin@fab-manager.com - password: adminadmin 13. Email notifications will be caught by MailCatcher. To see the emails sent by the platform, open your web browser at `http://localhost:1080` to access the MailCatcher interface. ### Environment Configuration The settings in `config/application.yml` configure the environment variables of the application. If you are in a development environment, your can keep the default values, otherwise, in production, values must be configured carefully. POSTGRES_HOST DNS name or IP address of the server hosting the PostgreSQL database of the application (see [PostgreSQL](#postgresql)). This value is only used when deploying with Docker, otherwise this is configured in `config/database.yml`. POSTGRES_PASSWORD Password for the PostgreSQL user, as specified in `database.yml`. Please see [Setup the FabManager database in PostgreSQL](#setup-fabmanager-in-postgresql) for information on how to create a user and set his password. This value is only used when deploying with Docker, otherwise this is configured in `config/database.yml`. REDIS_HOST DNS name or IP address of the server hosting the redis database. ELASTICSEARCH_HOST DNS name or IP address of the server hosting the elasticSearch database. SECRET_KEY_BASE Used by the authentication system to generate random tokens, eg. for resetting passwords. Used by Rails to verify the integrity of signed cookies. You can generate such a random key by running `rake secret`. STRIPE_API_KEY & STRIPE_PUBLISHABLE_KEY Key and secret used to identify you Stripe account through the API. Retrieve them from https://dashboard.stripe.com/account/apikeys. STRIPE_CURRENCY Currency used by stripe to charge the final customer. See https://support.stripe.com/questions/which-currencies-does-stripe-support for a list of available 3-letters ISO code. **BEWARE**: stripe currency cannot be changed during the application life. Changing the currency after the application has already run, may result in several bugs and prevent the users to pay through stripe. So set this setting carefully before starting the application for the first time. INVOICE_PREFIX When payments are done on the platform, an invoice will be generated as a PDF file. The PDF file name will be of the form "(INVOICE_PREFIX) - (invoice ID) _ (invoice date) .pdf" FABLAB_WITHOUT_PLANS If set to 'true', the subscription plans will be fully disabled and invisible in the application. It is not recommended to disable plans if at least one subscription was took on the platform. FABLAB_WITHOUT_SPACES If set to 'false', enable the spaces management and reservation in the application. It is not recommended to disable spaces if at least one space reservation was made on the system. DEFAULT_MAIL_FROM When sending notification mails, the platform will use this address to identify the sender. DELIVERY_METHOD Configure the Rails' Action Mailer delivery method. See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details. DEFAULT_HOST, DEFAULT_PROTOCOL, SMTP_ADDRESS, SMTP_PORT, SMTP_USER_NAME & SMTP_PASSWORD When DELIVERY_METHOD is set to **smtp**, configure the SMTP server parameters. See http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration for more details. DEFAULT_HOST is also used to configure Google Analytics. GA_ID Identifier of your Google Analytics account. DISQUS_SHORTNAME Unique identifier of your [Disqus](http://www.disqus.com) forum. Disqus forums are used to allow visitors to comment on projects. See https://help.disqus.com/customer/portal/articles/466208-what-s-a-shortname- for more information. TWITTER_NAME Identifier of the Twitter account, from witch the last tweet will be fetched and displayed on the home page. This value can be graphically overridden during the application's lifecycle in Admin/Customization/Home page/Twitter Feed. It will also be used for [Twitter Card analytics](https://dev.twitter.com/cards/analytics). TWITTER_CONSUMER_KEY, TWITTER_CONSUMER_SECRET, TWITTER_ACCESS_TOKEN & TWITTER_ACCESS_TOKEN_SECRET Keys and secrets to access the twitter API. Retrieve them from https://apps.twitter.com FACEBOOK_APP_ID This is optional. You can follow [this guide to get your personal App ID](https://developers.facebook.com/docs/apps/register). If you do so, you'll be able to customize and get statistics about project shares on Facebook. LOG_LEVEL This parameter configures the logs verbosity. Available log levels can be found [here](http://guides.rubyonrails.org/debugging_rails_applications.html#log-levels). ALLOWED_EXTENSIONS Exhaustive list of file's extensions available for public upload as project's CAO attachements. Each item in the list must be separated from the others by a space char. You will probably want to check that this list match the `ALLOWED_MIME_TYPES` values below. Please consider that allowing file archives (eg. ZIP) or binary executable (eg. EXE) may result in a **dangerous** security issue and must be avoided in any cases. ALLOWED_MIME_TYPES Exhaustive list of file's mime-types available for public upload as project's CAO attachements. Each item in the list must be separated from the others by a space char. You will probably want to check that this list match the `ALLOWED_EXTENSIONS` values above. Please consider that allowing file archives (eg. application/zip) or binary executable (eg. application/exe) may result in a **dangerous** security issue and must be avoided in any cases. MAX_IMAGE_SIZE Maximum size (in bytes) allowed for image uploaded on the platform. This parameter concerns events, plans, user's avatars, projects and steps of projects. If this parameter is not specified the maximum size allowed will be 2MB. Settings related to Open Projects See the [Open Projects](#open-projects) section for a detailed description of these parameters. Settings related to i18n See the [Settings](#i18n-settings) section of the [Internationalization (i18n)](#i18n) paragraph for a detailed description of these parameters. ## PostgreSQL ### Install PostgreSQL 9.4 on Ubuntu/Debian 1. Create the file `/etc/apt/sources.list.d/pgdg.list`, and append it one the following lines: - `deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main` (Ubuntu 14.04 Trusty) - `deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main` (Ubuntu 16.04 Xenial) - `deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main` (Debian 8 Jessie) 2. Import the repository signing key, and update the package lists ```bash wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-get update ``` 3. Install PostgreSQL 9.4 ```bash sudo apt-get install postgresql-9.4 ``` ### Install and launch PostgreSQL on MacOS X This assumes you have [Homebrew](http://brew.sh/) installed on your system. Otherwise, please follow the official instructions on the project's website. 1. Update brew and install PostgreSQL ```bash brew update brew install homebrew/versions/postgresql94 ``` 2. Launch PostgreSQL ```bash # Start postgresql at login with launchd ln -sfv /usr/local/opt/postgresql/*.plist ~/Library/LaunchAgents # Load PostgreSQL now launchctl load ~/Library/LaunchAgents/homebrew.mxcl.postgresql.plist ``` ### Setup the FabManager database in PostgreSQL Before running `rake db:create`, you have to make sure that the user configured in [config/database.yml](config/database.yml.default) for the `development` environment exists. To create it, please follow these instructions: 1. Run the PostgreSQL administration command line interface, logged as the postgres user - For Ubuntu/Debian: ```bash sudo -i -u postgres psql ``` - For MacOS X: ```bash sudo psql -U $(whoami) postgres ``` If you get an error running this command, please check your [pg_hba.conf](https://www.postgresql.org/docs/current/static/auth-pg-hba-conf.html) file. 2. Create a new user in PostgreSQL (in this example, the user will be named `sleede`) ```sql CREATE USER sleede; ``` 3. Grant him the right to create databases ```sql ALTER ROLE sleede WITH CREATEDB; ``` 4. Then, attribute a password to this user ```sql ALTER USER sleede WITH ENCRYPTED PASSWORD 'sleede'; ``` 5. Finally, have a look at the [PostgreSQL Limitations](#postgresql-limitations) section or some errors will occurs preventing you from finishing the installation procedure. ### PostgreSQL Limitations - While setting up the database, we'll need to activate two PostgreSQL extensions: [unaccent](https://www.postgresql.org/docs/current/static/unaccent.html) and [trigram](https://www.postgresql.org/docs/current/static/pgtrgm.html). This can only be achieved if the user, configured in `config/database.yml`, was granted the _SUPERUSER_ role **OR** if these extensions were white-listed. So here's your choices, mainly depending on your security requirements: - Use the default PostgreSQL super-user (postgres) as the database user of fab-manager. - Set your user as _SUPERUSER_; run the following command in `psql` (after replacing `sleede` with you user name): ```sql ALTER USER sleede WITH SUPERUSER; ``` - Install and configure the PostgreSQL extension [pgextwlist](https://github.com/dimitri/pgextwlist). Please follow the instructions detailed on the extension website to whitelist `unaccent` and `trigram` for the user configured in `config/database.yml`. - Some users may want to use another DBMS than PostgreSQL. This is currently not supported, because of some PostgreSQL specific instructions that cannot be efficiently handled with the ActiveRecord ORM: - `app/controllers/api/members_controllers.rb@list` is using `ILIKE` - `app/controllers/api/invoices_controllers.rb@list` is using `ILIKE` and `date_trunc()` - `db/migrate/20160613093842_create_unaccent_function.rb` is using [unaccent](https://www.postgresql.org/docs/current/static/unaccent.html) and [trigram](https://www.postgresql.org/docs/current/static/pgtrgm.html) modules and defines a PL/pgSQL function (`f_unaccent()`) - `app/controllers/api/members_controllers.rb@search` is using `f_unaccent()` (see above) and `regexp_replace()` - `db/migrate/20150604131525_add_meta_data_to_notifications.rb` is using [jsonb](https://www.postgresql.org/docs/9.4/static/datatype-json.html), a PostgreSQL 9.4+ datatype. - `db/migrate/20160915105234_add_transformation_to_o_auth2_mapping.rb` is using [jsonb](https://www.postgresql.org/docs/9.4/static/datatype-json.html), a PostgreSQL 9.4+ datatype. - If you intend to contribute to the project code, you will need to run the test suite with `rake test`. This also requires your user to have the _SUPERUSER_ role. Please see the [known issues](#known-issues) section for more information about this. ## ElasticSearch ElasticSearch is a powerful search engine based on Apache Lucene combined with a NoSQL database used as a cache to index data and quickly process complex requests on it. In FabManager, it is used for the admin's statistics module and to perform searches in projects. ### Install ElasticSearch on Ubuntu/Debian For a more detailed guide concerning the ElasticSearch installation, please check the [official documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/setup.html) 1. Install the OpenJDK's Java Runtime Environment (JRE). ElasticSearch recommends that you install Java 8 update 20 or later. Please check that your distribution's version meet this requirement. ```bash sudo apt-get install openjdk-8-jre ``` 1. Create the file `/etc/apt/sources.list.d/elasticsearch-1.x.list`, and append it the following line: `deb http://packages.elastic.co/elasticsearch/1.x/debian stable main` 2. Import the repository signing key, and update the package lists ```bash wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - sudo apt-get update ``` 3. Install ElasticSearch 1.7 ```bash sudo apt-get install elasticsearch ``` 4. To automatically start ElasticSearch during bootup, then, depending if your system is compatible with SysV (eg. Ubuntu 14.04) or uses systemd (eg. Debian 8/Ubuntu 16.04), you will need to run: ```bash # System V sudo update-rc.d elasticsearch defaults 95 10 # *** OR *** (systemd) sudo /bin/systemctl daemon-reload sudo /bin/systemctl enable elasticsearch.service ``` 5. Restart the host operating system to complete the installation ```bash sudo reboot ``` ### Install ElasticSearch on MacOS X This assumes you have [Homebrew](http://brew.sh/) installed on your system. Otherwise, please follow the official instructions on the project's website. ```bash brew update brew install homebrew/versions/elasticsearch17 ``` ### Setup ElasticSearch for the FabManager 1. Launch the associated rake tasks in the project folder. This will create the fields mappings in ElasticSearch DB ```bash rake fablab:es_build_stats ``` 2. Every nights, the statistics for the day that just ended are built automatically at 01:00 (AM). See [schedule.yml](config/schedule.yml) to modify this behavior. If the scheduled task wasn't executed for any reason (eg. you are in a dev environment and your computer was turned off at 1 AM), you can force the statistics data generation in ElasticSearch, running the following command. ```bash # Here for the 50 last days rake fablab:generate_stats[50] ``` ### Backup and Restore To backup and restore the ElasticSearch database, use the [elasticsearch-dump](https://github.com/taskrabbit/elasticsearch-dump) tool. Dump the database with: `elasticdump --input=http://localhost:9200/stats --output=fablab_stats.json`. Restore it with: `elasticdump --input=fablab_stats.json --output=http://localhost:9200/stats`. ## Internationalization (i18n) The FabManager application can only run in a single language but this language can easily be changed. ### Translation Check the files located in `config/locales`: - Front app translations (angular.js) are located in `config/locales/app.scope.XX.yml`. Where scope has one the following meaning : - admin: translations of the administrator views (manage and configure the FabLab). - logged: translations of the end-user's views accessible only to connected users. - public: translation of end-user's views publicly accessible to anyone. - shared: translations shared by many views (like forms or buttons). - Back app translations (Ruby on Rails) are located in `config/locales/XX.yml`. - Emails translations are located in `config/locales/mails.XX.yml`. - Messages related to the authentication system are located in `config/locales/devise.XX.yml`. If you plan to translate the application to a new locale, please consider that the reference translation is French. Indeed, in some cases, the English texts/sentences can seems confuse or lack of context as they were originally translated from French. To prevent syntax mistakes while translating locale files, we **STRONGLY advise** you to use a text editor witch support syntax coloration for YML and Ruby. #### Front-end translations Front-end translations uses [angular-translate](http://angular-translate.github.io) with some interpolations interpreted by angular.js and other interpreted by [MessageFormat](https://github.com/SlexAxton/messageformat.js/). **These two kinds of interpolation use a near but different syntax witch SHOULD NOT be confused.** Please refer to the official [angular-translate documentation](http://angular-translate.github.io/docs/#/guide/14_pluralization) before translating. #### Back-end translations Back-end translations uses the [Ruby on Rails syntax](http://guides.rubyonrails.org/i18n.html) but some complex interpolations are interpreted by [MessageFormat](https://github.com/format-message/message-format-rb) and are marked as it in comments. **DO NOT confuse the syntaxes.** In each cases, some inline comments are included in the localisation files. They can be recognized as they start with the sharp character (#). These comments are not required to be translated, they are intended to help the translator to have some context information about the sentence to translate. ### Configuration Locales configurations are made in `config/application.yml`. If you are in a development environment, your can keep the default values, otherwise, in production, values must be configured carefully. #### Settings RAILS_LOCALE Configure Ruby on Rails for l10n. Be sure that `config/locales/rails.XX.yml` exists, where `XX` match your configured RAILS_LOCALE. You can find templates of these files at https://github.com/svenfuchs/rails-i18n/tree/rails-4-x/rails/locale. Be aware that **this file MUST contain the CURRENCY symbol used to generate invoices** (among other things). Default is **en**. MOMENT_LOCALE Configure the moment.js library for l10n. See `vendor/assets/components/moment/locale/*.js` for a list of available locales. Default is **en** (even if it's not listed). SUMMERNOTE_LOCALE Configure the javascript summernote editor for l10n. See `vendor/assets/components/summernote/lang/summernote-*.js` for a list of available locales. Default is **en-US** (even if it's not listed). ANGULAR_LOCALE Configure the locale for angular-i18n. Please, be aware that **the configured locale will imply the CURRENCY displayed to front-end users.** _Eg.: configuring **fr-fr** will set the currency symbol to **€** but **fr-ca** will set **$** as currency symbol, so setting the `angular_locale` to simple **fr** (without country indication) will probably not do what you expect._ See `vendor/assets/components/angular-i18n/angular-locale_*.js` for a list of available locales. Default is **en**. MESSAGEFORMAT_LOCALE Configure the messageformat.js library, used by angular-translate. See vendor/assets/components/messageformat/locale/*.js for a list of available locales. FULLCALENDAR_LOCALE Configure the fullCalendar JS agenda library. See `vendor/assets/components/fullcalendar/dist/lang/*.js` for a list of available locales. Default is **en** (even if it's not listed). ELASTICSEARCH_LANGUAGE_ANALYZER This configure the language analyzer for indexing and searching in projects with ElasticSearch. See https://www.elastic.co/guide/en/elasticsearch/reference/1.7/analysis-lang-analyzer.html for a list of available analyzers (check that the doc version match your installed elasticSearch version). TIME_ZONE In Rails: set Time.zone default to the specified zone and make Active Record auto-convert to this zone. Run `rake time:zones:all` for a list of available time zone names. Default is **UTC**. WEEK_STARTING_DAY Configure the first day of the week in your locale zone (generally monday or sunday). D3_DATE_FORMAT Date format for dates displayed in statistics charts. See https://github.com/mbostock/d3/wiki/Time-Formatting#format for available formats. UIB_DATE_FORMAT Date format for dates displayed and parsed in date pickers. See https://angular-ui.github.io/bootstrap/#uibdateparser-s-format-codes for a list available formats. **BEWARE**: years format with less than 4 digits will result in problems because the system won't be able to distinct dates with the same less significant digits, eg. 50 could mean 1950 or 2050. EXCEL_DATE_FORMAT Date format for dates shown in exported Excel files (eg. statistics) See https://support.microsoft.com/en-us/kb/264372 for a list a available formats. #### Applying changes After modifying any values concerning the localisation, restart the application (ie. web server) to apply these changes in the i18n configuration. ## Open Projects **This configuration is optional.** You can configure your fab-manager to synchronize every project with the [Open Projects platform](https://github.com/LaCasemate/openlab-projects). It's very simple and straightforward and in return, your users will be able to search over projects from all fab-manager instances from within your platform. The deal is fair, you share your projects and as reward you benefits from projects of the whole community. If you want to try it, you can visit [this fab-manager](https://fablab.lacasemate.fr/#!/projects) and see projects from different fab-managers. To start using this awesome feature, there are a few steps: - send a mail to **contact@fab-manager.com** asking for your Open Projects client's credentials and giving them the name of your fab-manager, they will give you an `OPENLAB_APP_ID` and an `OPENLAB_APP_SECRET` - fill in the value of the keys in your `application.yml` - start your fab-manager app - export your projects to open-projects (if you already have projects created on your fab-manager, unless you can skip that part) executing this command: `bundle exec rake fablab:openlab:bulk_export` **IMPORTANT: please run your server in production mode.** Go to your projects gallery and enjoy seeing your projects available from everywhere ! That's all. ## Plugins Fab-manager has a system of plugins mainly inspired by [Discourse](https://github.com/discourse/discourse) architecture. It enables you to write plugins which can: - have its proper models and database tables - have its proper assets (js & css) - override existing behaviours of Fab-manager - add features by adding views, controllers, ect... To install a plugin, you just have to copy the plugin folder which contains its code into the folder `plugins` of Fab-manager. You can see an example on the [repo of navinum gamification plugin](https://github.com/LaCasemate/navinum-gamification) ## Single Sign-On Fab-manager can be connected to a [Single Sign-On](https://en.wikipedia.org/wiki/Single_sign-on) server which will provide its own authentication for the platform's users. Currently OAuth 2 is the only supported protocol for SSO authentication. For an example of how to use configure a SSO in Fab-manager, please read [sso_with_github.md](doc/sso_with_github.md). Developers may find information on how to implement their own authentication protocol in [sso_authentication.md](doc/sso_authentication.md). ## Known issues - When browsing a machine page, you may encounter an "InterceptError" in the console and the loading bar will stop loading before reaching its ending. This may happen if the machine was created through a seed file without any image. To solve this, simply add an image to the machine's profile and refresh the web page. - When starting the Ruby on Rails server (eg. `foreman s`) you may receive the following error: worker.1 | invalid url: redis::6379 web.1 | Exiting worker.1 | ...lib/redis/client.rb...:in `_parse_options' This may happen when the `application.yml` file is missing. To solve this issue copy `config/application.yml.default` to `config/application.yml`. This is required before the first start. - Due to a stripe limitation, you won't be able to create plans longer than one year. - When running the tests suite with `rake test`, all tests may fail with errors similar to the following: Error: ... ActiveRecord::InvalidForeignKey: PG::ForeignKeyViolation: ERROR: insert or update on table "..." violates foreign key constraint "fk_rails_..." DETAIL: Key (group_id)=(1) is not present in table "groups". : ... test_after_commit (1.0.0) lib/test_after_commit/database_statements.rb:11:in `block in transaction' test_after_commit (1.0.0) lib/test_after_commit/database_statements.rb:5:in `transaction' This is due to an ActiveRecord behavior witch disable referential integrity in PostgreSQL to load the fixtures. PostgreSQL will prevent any users to disable referential integrity on the fly if they doesn't have the `SUPERUSER` role. To fix that, logon as the `postgres` user and run the PostgreSQL shell (see [Setup the FabManager database in PostgreSQL](#setup-fabmanager-in-postgresql) for an example). Then, run the following command (replace `sleede` with your test database user, as specified in your database.yml): ALTER ROLE sleede WITH SUPERUSER; DO NOT do this in a production environment, unless you know what you're doing: this could lead to a serious security issue. - With Ubuntu 16.04, ElasticSearch may refuse to start even after having configured the service with systemd. To solve this issue, you may have to set `START_DAEMON` to `true` in `/etc/default/elasticsearch`. Then reload ElasticSearch with: ```bash sudo systemctl restart elasticsearch.service ``` ## Related Documentation - [Ruby 2.3.0](http://ruby-doc.org/core-2.3.0/) - [Ruby on Rails](http://api.rubyonrails.org) - [AngularJS](https://docs.angularjs.org/api) - [Angular-Bootstrap](http://angular-ui.github.io/bootstrap/) - [ElasticSearch 1.7](https://www.elastic.co/guide/en/elasticsearch/reference/1.7/index.html)