8.6 KiB
Install Fab-Manager in a development environment with Docker
This document will guide you through all the steps needed to set up a development environment for Fab-Manager.
Table of contents
- General Guidelines
- PostgreSQL
2.1. Install PostgreSQL 9.6 - ElasticSearch
3.1. Install ElasticSearch
3.2. Rebuild statistics
3.3. Backup and Restore
This procedure is not easy to follow so if you don't need to write some code for Fab-manager, please prefer the docker-compose installation method.
General Guidelines
-
Install RVM, with the ruby version specified in the .ruby-version file. For more details about the process, please read the official RVM documentation. If you're using ArchLinux, you may have to read this before.
-
Install NVM, with the node.js version specified in the .nvmrc file. For instructions about installing NVM, please refer to the NVM readme.
-
Install Yarn, the front-end package manager. Depending on your system, the installation process may differ, please read the official Yarn documentation.
-
Install docker. Your system may provide a pre-packaged version of docker in its repositories, but this version may be outdated. Please refer to ubuntu, debian or MacOS documentation to setup a recent version of docker.
-
Add your current user to the docker group, to allow using docker without
sudo
.# add the docker group if it doesn't already exist sudo groupadd docker # add the current user to the docker group sudo usermod -aG docker $(whoami) # restart to validate changes sudo reboot
-
Create a docker network for fab-manager. You may have to change the network address if it is already in use.
🍏 If you're using MacOS, this is not required.
docker network create --subnet=172.18.0.0/16 fabmanager
-
Retrieve the project from Git
git clone https://github.com/sleede/fab-manager.git
-
Install the software dependencies. First install PostgreSQL and ElasticSearch as specified in their respective documentations (see below). Then install the other dependencies:
- For Ubuntu/Debian:
# on Ubuntu 18.04 server, you may have to enable the "universe" repository sudo add-apt-repository universe # then, install the dependencies sudo apt-get install libpq-dev redis-server imagemagick
- For MacOS X:
brew install redis imagemagick
-
Init the RVM and NVM instances and check they were correctly configured
cd fab-manager rvm current | grep -q `cat .ruby-version`@fab-manager && echo "ok" # Must print ok nvm use node --version | grep -q `cat .nvmrc` && echo "ok" # Must print ok
-
Install bundler in the current RVM gemset
gem install bundler --version=1.17.3
- Install the required ruby gems and javascript plugins
bundle install
yarn install
- Create the default configuration files and configure them! (see the environment configuration documentation)
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 databases.
- Warning: DO NOT run
rake db:setup
instead of these commands, as this will not run some required raw SQL instructions. - Please note: Your password length must be between 8 and 128 characters, otherwise db:seed will be rejected. This is configured in config/initializers/devise.rb
# for dev
rake db:create
rake db:migrate
ADMIN_EMAIL='youradminemail' ADMIN_PASSWORD='youradminpassword' rake db:seed
rake fablab:es:build_stats
# for tests
RAILS_ENV=test rake db:create
RAILS_ENV=test rake db:migrate
- 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 credentials defined previously.
-
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.
PostgreSQL
Install PostgreSQL 9.6
We will use docker to easily install the required version of PostgreSQL.
-
Create the docker binding folder
mkdir -p .docker/postgresql
-
Start the PostgreSQL container.
🍏 If you're using MacOS, remove the --network and --ip parameters, and add -p 5432:5432.
docker run --restart=always -d --name fabmanager-postgres \ -v $(pwd)/.docker/postgresql:/var/lib/postgresql/data \ --network fabmanager --ip 172.18.0.2 \ postgres:9.6
-
Configure fab-manager to use it. On linux systems, PostgreSQL will be available at 172.18.0.2. On MacOS, you'll have to set the host to 127.0.0.1 (or localhost). See environment.md for more details.
4 . Finally, you may want to have a look at detailed informations about PostgreSQL usage in fab-manager. Some information about that is available in the PostgreSQL Readme.
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
-
Create the docker binding folders
mkdir -p .docker/elasticsearch/config mkdir -p .docker/elasticsearch/plugins mkdir -p .docker/elasticsearch/backups
-
Copy the default configuration files
cp docker/elasticsearch.yml .docker/elasticsearch/config cp docker/log4j2.properties .docker/elasticsearch/config
-
Start the ElasticSearch container.
🍏 If you're using MacOS, remove the --network and --ip parameters, and add -p 9200:9200.
docker run --restart=always -d --name fabmanager-elastic \ -v $(pwd)/.docker/elasticsearch/config:/usr/share/elasticsearch/config \ -v $(pwd)/.docker/elasticsearch:/usr/share/elasticsearch/data \ -v $(pwd)/.docker/elasticsearch/plugins:/usr/share/elasticsearch/plugins \ -v $(pwd)/.docker/elasticsearch/backups:/usr/share/elasticsearch/backups \ --network fabmanager --ip 172.18.0.3 \ elasticsearch:5.6
-
Configure fab-manager to use it. On linux systems, ElasticSearch will be available at 172.18.0.3. On MacOS, you'll have to set the host to 127.0.0.1 (or localhost). See environment.md for more details.
Rebuild statistics
Every nights, the statistics for the day that just ended are built automatically at 01:00 (AM) and stored in ElastricSearch. 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 command.
# Here for the 50 last days
rake fablab:es:generate_stats[50]
Backup and Restore
To backup and restore the ElasticSearch database, use the 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
.