Installation on Linux
Installing the FCF environment and framework
- 
  Install the mysql or mariadb database. 
 
- 
  Install the nodejs and npm packages
 
- 
  Download the archive of the latest version of fcf and unpack it in the /opt directory
 
- 
  
  Add the path "/opt/fcf" to your global environment PATH.
  
  
    For Debian, the paths must be added to the /etc/bash.bashrc and /etc/sudoers files
  
   
   /etc/bash.bashrc:
    
...
PATH=${PATH}:/opt/fcf
...
    
  
   
   /etc/sudoers:
    
...
Defaults        secure_path="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/fcf"
...