2020-02-26 10:19:43 +01:00
# Install Fab-manager in a development environment with Docker
2019-12-03 17:15:32 +01:00
2020-02-26 10:19:43 +01:00
This document will guide you through all the steps needed to set up a development environment for Fab-manager.
2019-12-03 17:15:32 +01:00
##### Table of contents
1. [General Guidelines ](#general-guidelines )< br />
2020-03-23 15:03:09 +01:00
2. [PostgreSQL ](#postgresql )
2019-12-03 17:15:32 +01:00
3. [ElasticSearch ](#elasticsearch )< br />
2020-03-23 15:03:09 +01:00
3.1. [Rebuild statistics ](#rebuild-stats )< br />
3.2. [Backup and Restore ](#backup-and-restore-elasticsearch )
2019-12-03 17:15:32 +01:00
2020-03-24 11:23:56 +01:00
This procedure is not easy to follow so if you don't need to write some code for Fab-manager, please prefer the [production installation method ](doc/production_readme.md ).
2019-12-03 17:15:32 +01:00
< a name = "general-guidelines" > < / a >
## General Guidelines
1. Install RVM, with the ruby version specified in the [.ruby-version file ](../.ruby-version ).
2020-03-23 15:03:09 +01:00
For more details about the process, please read the [official RVM documentation ](http://rvm.io/rvm/install )
2019-12-03 17:15:32 +01:00
2. Install NVM, with the node.js version specified in the [.nvmrc file ](../.nvmrc ).
For instructions about installing NVM, please refer to [the NVM readme ](https://github.com/nvm-sh/nvm#installation-and-update ).
3. Install Yarn, the front-end package manager.
Depending on your system, the installation process may differ, please read the [official Yarn documentation ](https://yarnpkg.com/en/docs/install#debian-stable ).
4. 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 ](https://docs.docker.com/install/linux/docker-ce/ubuntu/ ), [debian ](https://docs.docker.com/install/linux/docker-ce/debian/ ) or [MacOS ](https://docs.docker.com/docker-for-mac/install/ ) documentation to setup a recent version of docker.
5. Add your current user to the docker group, to allow using docker without `sudo` .
```bash
# 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
```
2020-03-23 15:03:09 +01:00
6. Retrieve the project from Git
2019-12-03 17:15:32 +01:00
```bash
git clone https://github.com/sleede/fab-manager.git
```
2020-03-23 15:03:09 +01:00
7. Move into the project directory and install the docker-based dependencies.
> ⚠ If you are using MacOS X, you must *first* edit the files located in docker/development to use port binding instead of ip-based binding.
> This can be achieved by uncommenting the "port" directives and commenting the "networks" directives in the docker-compose.yml file.
> The hosts file must be modified too, accordingly.
```bash
cd fab-manager
cat docker/development/hosts | sudo tee -a /etc/hosts
mkdir -p .docker/elasticsearch/config
cp docker/development/docker-compose.yml .docker
cp docker/elasticsearch.yml .docker/elasticsearch/config
cp docker/log4j2.properties .docker/elasticsearch/config
cd .docker
docker-compose up -d
cd -
```
8. Install the other dependencies.
2019-12-03 17:15:32 +01:00
- For Ubuntu/Debian:
```bash
# on Ubuntu 18.04 server, you may have to enable the "universe" repository
sudo add-apt-repository universe
# then, install the dependencies
2020-03-23 15:03:09 +01:00
sudo apt-get install libpq-dev imagemagick
2019-12-03 17:15:32 +01:00
```
- For MacOS X:
```bash
2020-03-23 15:03:09 +01:00
brew install imagemagick
2019-12-03 17:15:32 +01:00
```
9. Init the RVM and NVM instances and check they were correctly configured
```bash
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
```
2020-03-23 15:03:09 +01:00
If one of these commands does not print "ok", then try to input `rvm use` or `nvm use`
```
2019-12-03 17:15:32 +01:00
10. Install bundler in the current RVM gemset
```bash
gem install bundler --version=1.17.3
```
11. Install the required ruby gems and javascript plugins
```bash
bundle install
yarn install
```
2019-12-03 17:32:27 +01:00
12. Create the default configuration files **and configure them!** (see the [environment configuration documentation ](environment.md ))
2019-12-03 17:15:32 +01:00
```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...)
```
13. Build the databases.
2020-03-25 17:58:53 +01:00
> **⚠ Warning**: **DO NOT** run `rails db:setup` instead of these commands, as this will not run some required raw SQL instructions.
2020-03-23 15:03:09 +01:00
> **🛈 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](config/initializers/devise.rb)
2019-12-03 17:15:32 +01:00
```bash
# for dev
2020-03-25 17:58:53 +01:00
rails db:create
rails db:migrate
ADMIN_EMAIL='youradminemail' ADMIN_PASSWORD='youradminpassword' rails db:seed
rails fablab:es:build_stats
2019-12-03 17:15:32 +01:00
# for tests
2020-03-25 17:58:53 +01:00
RAILS_ENV=test rails db:create
RAILS_ENV=test rails db:migrate
2019-12-03 17:15:32 +01:00
```
14. 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
```
15. Start the development web server
```bash
2020-03-23 15:03:09 +01:00
foreman s -p 5000
2019-12-03 17:15:32 +01:00
```
2020-02-26 10:19:43 +01:00
16. You should now be able to access your local development Fab-manager instance by accessing `http://localhost:3000` in your web browser.
2019-12-03 17:15:32 +01:00
17. You can login as the default administrator using the credentials defined previously.
18. 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.
< a name = "postgresql" > < / a >
## PostgreSQL
2020-03-23 15:03:09 +01:00
Some information about PostgreSQL usage in fab-manager is available in the [PostgreSQL Readme ](postgresql_readme.md ).
2019-12-03 17:15:32 +01:00
< a name = "elasticsearch" > < / a >
## 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.
2020-03-23 15:03:09 +01:00
In FabManager, it is used for the admin's statistics module and to perform searches in projects.
2019-12-03 17:15:32 +01:00
2020-03-23 15:03:09 +01:00
The organisation if the data in the ElasticSearch database is documented in [elasticsearch.md ](elasticsearch.md )
2019-12-03 17:15:32 +01:00
< a name = "rebuild-stats" > < / a >
### Rebuild statistics
2020-03-23 15:03:09 +01:00
Every nights, the statistics for the day that just ended are built automatically at 01:00 (AM) and stored in ElasticSearch.
2019-12-03 17:15:32 +01:00
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
2020-03-25 17:58:53 +01:00
rails fablab:es:generate_stats[50]
2019-12-03 17:15:32 +01:00
```
< a name = "backup-and-restore-elasticsearch" > < / a >
### 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` .