ProvideQ / toolbox-server

Resources for the server that hosts the toolbox (Backend)
https://provideq.kit.edu
MIT License
2 stars 1 forks source link

Build Release

ProvideQ Toolbox Server

This repository contains the source code for the ProvideQ Toolbox server. A web-based user interface can be found in our ProvideQ/ProvideQ repository.

Development setup

  1. Install Java 17 or newer (check with java -version)
  2. Clone this repository
  3. [Optional, Solver Installation - install the Solvers that you want/need]
    1. Python-based Solvers (Qiskit, Cirq, Dwave, Qrisp)
      1. Install Python
      2. Install Python dependencies by running python scripts/install-python-dependencies.py
        Alternatively, run pip install -r requirements.txt on all requirement.txt files in the /solvers directory.
    2. Compiled Solvers (e.g. used for VRP and TSP)
      1. Solvers implemented in compiled languages must be executed via binaries that are compiled for your operating system. For those types of solvers we usually include pre-compiled binaries for windows, mac (only arm), and unix.
        • General Note: Solvers might be programmed in different languages. E.g., LKH-3 is implemented in C. Make sure that the solver-specific language is installed on your system.
      2. In case the pre-compiled versions do not work on your machine: re-compile them:
        • LKH-3:
      3. Build LKH-3 using the offical guide: http://webhotel4.ruc.dk/~keld/research/LKH-3/
      4. Put the build binary in solvers/lkh/bin, replace the binary that matches your OS.
        • VRP-Pipeline (used for K-means, Two Phase Clustering, VRP to QUBO convertion):
      5. Install Rust: https://www.rust-lang.org/tools/install
      6. Install a specific Rust nightly build (needed cause the solver uses experimental features): rustup install nightly-2023-07-01
      7. Check how the nightly build is called on your machine (this is shown when running the install command, on Mac it is called nightly-2023-07-01-aarch64-apple-darwin)
      8. Set the nightly build as default: rustup default nightly-2023-07-01(... specific version name on machine)
      9. Download source code of the VRP-Pipeline: https://github.com/ProvideQ/hybrid-vrp-solver
      10. build the source code using cargo build
      11. Put the build binary in solvers/berger-vrp/bin, replace the binary that matches your OS.
    3. GAMS (multiple solvers are build on this):
      1. Install a python env that works with GAMS (skip this step if you don't need GAMS)
      2. Install GAMS. (https://www.gams.com/download/)
      3. Install miniconda (or anaconda, if you prefer that): https://conda.io/projects/conda/en/stable/user-guide/install/index.html
      4. Create a GAMS conda environment: conda create --name gams python=3.10 --yes
      5. Activate your conda environment: conda activate gams.
      6. Make GAMS use that python environment by setting the GMSPYTHONLIB=<path-to-conda>/envs/gams/lib/libpython3.10.so environment variable.
      7. Install GAMS packages to the GAMS conda env: pip install gams[core,connect] --find-links <path-to-gams>/api/python/bdist
        • If you get an error building psycopg2, try to install these postgres packages: sudo apt-get install postgresql libpq-dev and run the pip install ... command again
      8. Install the python dependencies we use in our python packages: pip install -r gams/requirements.txt
  4. Run the server using ./gradlew bootRun

Deployment

This repository is designed to be deployed with Dokku, but you can also run the Java application directly or inside a docker container (Dockerfile is included!). The docker container can be built and run as follows:

# we assume that you have a gamslice.txt file in this directory containing a valid GAMS license (typically 6 lines)
docker build --tag provideq-toolbox-backend --build-arg GAMS_LICENSE=$(base64 --wrap=0 ./gamslice.txt) .
docker run --publish 8080:5000 provideq-toolbox-backend

Releasing a new version

  1. Create a release branch from develop: git checkout -b release/x.y.z.
  2. Bump the version number in the build.gradle file to the new version number and commit it to the release branch.
  3. Push to GitHub and create a pull request to merge the release branch into main.
  4. Make sure to test your new version!
  5. Write a changelog. The PR can help you identify differences between the last release (main) and the next one (your release branch).
  6. Merge the PR into main.
  7. Create a new GitHub release with a new tag named like your version number x.y.z and use the changelog as the description.
  8. Pull the main branch (git checkout main && git pull), merge it into the develop branch (git checkout develop && git pull && git merge main) and push it (git push).

CI / CD

We're using GitHub Actions to automate the execution of our validation tools and the deployment of our software. To use this, enable GitHub Actions and configure the following secrets in the GitHub repository settings:

License

Copyright (c) 2022 - 2023 ProvideQ

This project is available under the MIT License.