1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/doc/virtual-machine.md
2023-03-22 10:58:22 +01:00

2.0 KiB

Virtual Machine Instructions

These instructions allow to deploy a testing or development instance of Fab-manager inside a virtual machine, with most of the software dependencies installed automatically and avoiding to install a lot of software and services directly on the host computer.

Note: The provision scripts configure the sofware dependencies to play nice with each other while they are inside the same virtual environment but said configuration is not optimized for a production environment.

Note 2: The perfomance of the application under the virtual machine depends on the resources that the host can provide but will usually be much more slower than a production environment.

  1. Install Vagrant and Virtual Box (with the extension package).

  2. Retrieve the project from Git

    git clone https://github.com/sleede/fab-manager
    
  3. From the project directory, run:

    vagrant up
    
  4. Once the virtual machine finished building, reload it with:

    vagrant reload
    
  5. Log into the virtual machine with:

    vagrant ssh
    
  6. While logged in, navigate to the project folder and install the Gemfile dependencies:

    bundle install
    yarn install
    
  7. Set up the databases. (Note that you should provide the desired admin credentials and that these specific set of commands must be used to set up the database as some raw SQL instructions are included in the migrations. Password minimal length is 8 characters):

    rails db:schema:load
    # Be sure not to use the default values below in production
    ADMIN_EMAIL='admin@email' ADMIN_PASSWORD='adminpass' rails db:seed
    rails fablab:es:build_stats
    # for tests
    RAILS_ENV=test rails db:schema:load
    
  8. Start the application and visit localhost:3000 on your browser to check that it works:

    foreman s -p 3000