The deployment of a production system is done by a dedicated deployment repository that sets up the backend, front end and all services. To deploy the web front end in a production environment use the deployment procedure
To start development with freva clone the repository and its sub-modules:
git clone --recursive git@github.com:FREVA-CLINT/freva-web.git
And create a pair of self-signed keys. These keys will be used by various services.
python docker/config/dev-utils.py gen-certs
The web ui is being deployed in a dedicated anaconda environment. Hence you need anaconda to be installed on you computer. Once anaconda is set up the installation of all required packages is quite simple:
conda env create -f conda-env.yml
source .envrc
📝
If conda has issues solving dependencies you can install and use mamba instead of anaconda. This is recommended because the dependency solvers that ship with mamba are usually much faster than those conda uses.
The web ui will need a connection to a solr,
freva-databrowser and
mariadb service. This services can be deployed using
docker-compose
.
docker compose up -d
When finished, tear down the environment with
docker compose down
You can also use podman (python -m pip install podman-compose
):
pomand-compose up -d
podman-compose down
By default the compose command will evaluate environment variables defined in
the .evn
file. If you want to override these variables, for example to disable
using self signed certificates you can create another environment file and
pass the --env-file
variable. The following setup would disable certificates:
cat .env.dev
REDIS_USER=redis
REDIS_PASSWD=secret
docker compose --env-file .env.dev up -d
There are some rudimentary tests that check the integration of django
and the
nodejs
building process. Assuming you have followed steps mentioned above and
created a freva-dev
conda miniconda environment you can run the tests after
activating this environment:
conda activate freva-web
python -m pytest -vv tests
Currently the web app needs multiple components to run. These are:
- A java script front end via node.js
- The freva restAPI.
- The django web backend.
Future development aims at replacing the django backend by the freva restAPI. Until this this is done the two components have to be deployed together.
We have created a Makefile that sets up a development version of the web. You can use:
- To setup / initialise the nodejs, freva restAPI and django servers use:
make setup
- To run node, freva restAPI and django servers use:
make run
- To use both
setup
andrun
command use just use make:make
- To stop the servers use:
make stop
📝
If you have created a custom environment file when starting the docker containers you can export the path the custom environment file by using theDOCKER_ENV_FILE
environment variable:DOCKER_ENV_FILE=.env.dev make run
The django and npm development servers will write output into runserver.log
and
npm.log
. You can observe the output of the processes using tail -f
or something
similar.
📝
You need a Node version of at least 16.5 along a npm version of 8.19
This section only briefly describes the docker image that is automatically created (see the next section on how to trigger a build of the image) and is not meant for actual application. Please install and use the freva-deployment package to deploy the web app in production mode.
A pre-build image of the web app is available via:
docker pull ghcr.io/freva-clint/freva-web:latest
When running in production mode you should set the following container environment variables:
EVALUATION_SYSTEM_CONFIG_FILE
: Path to the freva config fileLDAP_USER_DN
: the Distinguished Name within ldap for exampleuid=jdoe,ou=users,dc=example,dc=com
.LDAP_USER_PW
: password for the LDAP server connection.DJANGO_SUPERUSER_PASSWORD
: the super user password for the django app.
The web app app is running on port 8000, hence you want to publish this port
via the -p
flag. Ideally the path to the $EVALUATION_SYSTEM_CONFIG_FILE
should be mounted into the container as a volume.
Since static files are served by the http web server and not the django web app
you have to add the location of the static files (e.g. /srv/static
) as a
volume into the container to the /opt/freva_web/static
location.
On startup of the container django app will create all static files that will
then be available through /srv/static
on the docker host.
All together a minimal working example looks like this:
docker run -it -e EVALUATION_SYSTEM_CONFIG_FILE=/work/freva/evaluation_system.conf \
-e LDAP_USER_DN='uid=jdoe,ou=users,dc=example,dc=com' \
-e LDAP_USER_PW='secret' \
-e DJANGO_SUPERUSER_PASSWORD='more_secret' \
-v /work/freva:/work/freva:z \
-v /srv/static:/opt/freva_web/static:z \
-p 8000:8000 \
ghcr.io/freva-clint/freva-web:latest
The web app is then available via port 8000 on the host system.
To be able to access the web app through a normal http web server you will need
to setup a reverse proxy on your http web server to port 8000. Refer to the
reverse proxy settings for your web server. Here is a minimal example for
apache httpd (using the example from above where the static files are located
in /srv/static
on the docker host):
Listen 80
LoadModule proxy_html_module modules/mod_proxy_html.so
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<VirtualHost *:80>
ProxyPass /static/ !
ProxyPass /api/freva-nextgen/ http://freva-databrowser.example.com:7777/api/freva-nextgen/
ProxyPassReverse /api/freva-nextgen/ http://freva-databrowser.example.com:7777/api/freva-nextgen/
ProxyPass / http://freva.example.com:8000/
ProxyPassReverse / http://freva.example.com:8000/
Alias /static /srv/static/
Alias /robots.txt /srv/static/robots.txt
Alias /favicon.ico /srv/static/favicon.ico
</VirtualHost>
📝
This is a minimal example, in a real world scenario you should always configure your web server to enable web encryption via port 443.
The production systems are deployed in a docker image hosted on the GitHub
container registry: ghcr.io/freva-clint/freva-web
. A GitHub workflow has to
be triggered in order to build an updated version of the docker image and push
it to the registry. To do so please follow the following steps.
- Make sure the main branch is up to date
- Bump the version in the
package.json
file. Currently caldev versioning is used. An example would be"version": "2023.07.19"
- After you have pushed the version changes to the main branch you can trigger
the release procedure:
make release
This will check the current version of the main
branch and trigger
a GitHub continuous integration pipeline to create the new release. The procedure
performs a couple of checks, if theses checks fail please make sure to address
the issues.