FabManager is the FabLab management solution. It is web-based, open-source and totally free.
- Software stack
- Contributing
- Setup a production environment with Docker and CoreOS
- Setup a development environment
4.1. General Guidelines
4.2. Environment Configuration - PostgreSQL
5.1. Install PostgreSQL 9.4 on Ubuntu/Debian
5.2. Install and launch PostgreSQL on MacOS X
5.3. Setup the FabManager database in PostgreSQL - ElasticSearch
6.1. Install ElasticSearch on Ubuntu/Debian
6.2. Install ElasticSearch on MacOS X
6.3. Setup ElasticSearch for the FabManager - Internationalization (i18n)
7.1. Translation
7.1.1. Front-end translations
7.1.2. Back-end translations
7.2. Configuration
7.2.1. Settings
7.2.2. Applying changes - Open Projects
- Known issues
- Related Documentation
FabManager is a Ruby on Rails / AngularJS web application that runs on the following software:
- Ubuntu/Debian
- Ruby 2.3
- Git 1.9.1+
- Redis 2.8.4+
- Sidekiq 3.3.4+
- Elasticsearch 1.7
- PostgreSQL 9.4
Contributions are welcome. Please read the contribution guidelines for more information about the contribution process.
IMPORTANT: do not update Arshaw/fullCalendar.js as it contains a hack for the remove-event cross.
-
Install RVM with the ruby version specified in the .ruby-version file. For more details about the process, Please read the official RVM documentation.
-
Retrieve the project from Git
git clone https://github.com/LaCasemate/fab-manager.git
-
Install the software dependencies.
- For Ubuntu/Debian:
sudo apt-get install libpq-dev postgresql-9.4 redis-server imagemagick
- For MacOS X:
brew install postgresql redis imagemagick
-
Init the RVM instance and check it was correctly configured
cd fab-manager rvm current # Must print ruby-X.Y.Z@fab-manager (where X.Y.Z match the version in .ruby-version)
-
Install bundler in the current RVM gemset
gem install bundler
-
Install the required ruby gems
bundle install
-
Create the default configuration files and configure them! (see the Environment Configuration section)
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...)
-
Build the database. You may have to follow the steps described in the PostgreSQL installation chapter before, if you don't already have a working installation of PostgreSQL.
rake db:setup
-
Create the pids folder used by Sidekiq. If you want to use a different location, you can configure it in
config/sidekiq.yml
mkdir -p tmp/pids
-
Start the development web server
foreman s -p 3000
-
You should now be able to access your local development FabManager instance by accessing
http://localhost:3000
in your web browser. -
You can login as the default administrator using the following credentials:
- user: admin@fab-manager.com
- password: adminadmin
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).
POSTGRES_PASSWORD
Password for the PostgreSQL user, as specified in database.yml
.
Please see Setup the FabManager database in PostgreSQL for informations on how to create a user and set his password.
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.
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 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 informations.
TWITTER_NAME
Identifier of the Twitter account, for witch the last tweet will be displayed on the home page.
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
Settings related to i18n
See the Settings section of the Internationalization (i18n) paragraph for a detailed description of these parameters.
-
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/ jessie-pgdg main
(Debian 8 Jessie)
-
Import the repository signing key, and update the package lists
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - sudo apt-get update
-
Install PostgreSQL 9.4
sudo apt-get install postgresql-9.4
This assumes you have Homebrew installed on your system. Otherwise, please follow the official instructions on the project's website.
-
Update brew and install PostgreSQL
brew update brew install postgres
-
Launch PostgreSQL
# 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
Before running rake db:setup
, you have to make sure that the user configured in config/database.yml for the development
environment exists.
To create it, please follow these instructions:
-
Login as the postgres user
sudo -i -u postgres
-
Run the PostgreSQL administration command line interface
psql
-
Create a new user in PostgreSQL (in this example, the user will be named
sleede
)CREATE USER sleede;
-
Grant him the right to create databases
ALTER ROLE sleede WITH CREATEDB;
-
Then, create the fablab_development and fablab_test databases
CREATE DATABASE fablab_development OWNER sleede; CREATE DATABASE fablab_test OWNER sleede;
-
To finish, attribute a password to this user
ALTER USER sleede WITH ENCRYPTED PASSWORD 'sleede';
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.
For a more detailed guide concerning the ElasticSearch installation, please check the official documentation
- 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.
sudo apt-get install openjdk-8-jre
-
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
-
Import the repository signing key, and update the package lists
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - sudo apt-get update
-
Install ElasticSearch 1.7
sudo apt-get install elasticsearch
-
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), you will need to run:
# System V sudo update-rc.d elasticsearch defaults 95 10 # *** OR *** (systemd) sudo /bin/systemctl daemon-reload sudo /bin/systemctl enable elasticsearch.service
This assumes you have Homebrew installed on your system. Otherwise, please follow the official instructions on the project's website.
brew update
brew install homebrew/versions/elasticsearch17
-
Launch the associated rake tasks in the project folder. This will create the fields mappings in ElasticSearch DB
rake fablab:es_build_stats
-
Every nights, the statistics for the day that just ended are built automatically at 01:00 (AM). See 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 commands in a rails console.
rails c
# Here for the 200 last days 200.times.each do |i| StatisticService.new.generate_statistic({start_date: i.day.ago.beginning_of_day,end_date: i.day.ago.end_of_day}) end
The FabManager application can only run in a single language but this language can easily be changed.
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 uses angular-translate with some interpolations interpreted by angular.js and other interpreted by MessageFormat. These two kinds of interpolation use a near but different syntax witch SHOULD NOT be confused. Please refer to the official angular-translate documentation before translating.
Back-end translations uses the Ruby on Rails syntax but some complex interpolations are interpreted by MessageFormat 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 informations about the sentence to translate.
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.
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.
After modifying any values concerning the localisation, restart the application (ie. web server) to apply these changes in the i18n configuration.
This configuration is optional.
You can configure your fab-manager to synchronize every project with the Open Projects platform. 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 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 anOPENLAB_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
Go to your projects gallery and enjoy seeing your projects available from everywhere ! That's all.
-
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 ble 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 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, as this would lead to a serious security issue.