Project

General

Profile

Support #920

Updated by Daniel Curtis about 6 years ago

This is a guide for building, installing and setting up Nextant for NextCloud on FreeBSD 11. 

 h2. Prepare the Environment  

 * Make sure the system is up to date: 
 <pre> 
 pkg update && pkg upgrade 
 </pre> 

 * Install a few dependencies: 
 <pre> 
 pkg install curl git gmake php-composer npm rsync 
 </pre> 

 * Check that fulltextsearch is enabled: 
 <pre> 
 cd /usr/local/www/nextcloud 
 sudo -u nextcloud php ./occ app:list 
 </pre> 
 #* If it is not enabled, do so by running: 
 <pre> 
 sudo -u nextcloud php ./occ app:enable fulltextsearch 
 </pre> 

 h2. Build Nextant 

 * Download and clone the latest Nextant repo: 
 <pre> 
 cd /usr/local/www/nextcloud/apps 
 git clone https://github.com/nextcloud/nextant.git 
 cd nextant 
 </pre> 

 * Build Nextant: 
 <pre> 
 gmake 
 </pre> 

 * Enable nextant: 
 <pre> 
 cd /usr/local/www/nextcloud 
 sudo -u nextcloud php ./occ app:enable nextant 
 </pre> 

 * Login to the NextCloud Admin section and go to *Additional Settings* to locate the Nextant configuration, and update the config accordingly. 

 h2. Resources 

 * https://github.com/nextcloud/nextant

Back