#!/usr/bin/env bash
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018 CERN.
#
# invenio-app-ils is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.

set -e

script_path=$(dirname "$0")
FLASK_ENV=development invenio run \
    --cert "$script_path"/../docker/frontend/test.crt \
    --key "$script_path"/../docker/frontend/test.key
