The new datafari UI based on React can be used directly into Datafari starting from Datafari 5.0.
...
This will create a build folder containing the production version of the DatafariUI. By default, this build expects to be reachable on the server using the path any.domain.test/datafariui.
This can be modified by changing content of the following file at the root of the project:
...
I found it best to put it as part of the installation folder, which is by default /opt/datafari.
You can copy the build folder to /opt/datafari/www for exemple:
...
Code Block |
---|
Alias /datafariui /opt/datafari/www/ <Directory "/opt/datafari/www"> Require all granted Options -MultiViews RewriteEngine On RewriteBase "/datafariui/" RewriteCond %{REQUEST_FILENAME} !-f RewriteRule "^/datafariui/ /datafariui/" "index.html" [QSA,L] </Directory> |
Save the configuration file, restart apache2 and you should be able to reach datafariui through: mydomain.test/datafariui
...
The development server can be configured to be served at any path, the default is the same as the production one, i.e. /datafariui. It can be changed in the file:
...