Skip to content
Snippets Groups Projects
Select Git revision
  • 5a59dc3afaca48b8158d77b22f9c49debd2ba03d
  • main default protected
  • dev protected
  • f-linkahead-rename
  • f-real-id
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-filesystem-main
  • f-name
  • keep_changes
  • f-permission-checks-2
  • f-mysql8-tests
  • f-retrieve-history
  • t-distinct-parents
  • v8.1.0
  • v8.0.0
  • v7.0.2
  • v7.0.1
  • v7.0.0
  • v6.0.1
  • v6.0.0
  • v5.0.0
  • v4.1.0
  • v4.0.0
  • v3.0
  • v2.0.30
29 results

config.defaults

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    config.defaults 2.50 KiB
    # This file is a part of the LinkAhead Project.
    #
    # Copyright (C) 2024 Daniel Hornung <d.hornung@indiscale.com>
    # Copyright (C) 2024 IndiScale GmbH <info@indiscale.com>
    # Copyright (C) 2018 Research Group Biomedical Physics,
    # Max-Planck-Institute for Dynamics and Self-Organization Göttingen
    #
    # This program is free software: you can redistribute it and/or modify
    # it under the terms of the GNU Affero General Public License as
    # published by the Free Software Foundation, either version 3 of the
    # License, or (at your option) any later version.
    #
    # This program is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU Affero General Public License
    # along with this program. If not, see <https://www.gnu.org/licenses/>.
    #
    
    # # Commands
    # The MySQL client program.
    MYSQL_CMD=$(command -v mysql || echo "mysql not found!" >&2)
    # The mysqladmin program which comes with the MySQL client.
    MYSQLADMIN_CMD=$(command -v mysqladmin || echo "mysqladmin not found!" >&2)
    # The mysqldump program which comes with the MySQL client.
    MYSQLDUMP_CMD=$(command -v mysqldump || echo "mysqldump not found!" >&2)
    # The mysql_config_editor program which is used to store the credentials.
    MYSQL_CONFIG_EDITOR_CMD=$(command -v mysql_config_editor || true)
    
    # # MySQL Connection
    # The host of the MySQL server.
    MYSQL_HOST=localhost
    # The port number of the MySQL server.
    MYSQL_PORT=3306
    # The user for the installation. Note: This is not the user
    # which will then be used by the CaosDB Server.
    MYSQL_USER=root
    MYSQL_USER_PASSWORD=caosdb1234
    # Additional options for the connection
    # e.g. if you want to connect a dockerized MariaDB at localhost you need to put
    # "--protocol=TCP" here because when host=localhost the connection defaults to
    # SOCKET.
    # MYSQL_OPTS='--protocol=TCP'
    MYSQL_OPTS=
    
    # # DATABASE
    # The name of the SQL database.
    DATABASE_NAME=caosdb
    # The user which is used by the CaosDB Server for accessing
    # the database.
    DATABASE_USER=caosdb
    # The password for the database user.  Leave empty
    # if you want to be prompted at make time.
    DATABASE_USER_PW=random1234
    
    # A comma-separated list of hosts from which MySQL will accept logins. This
    # option follows the MySQL-style for host-names and ip addresses. E.g. `%` is a
    # wildcard for all hosts, so `192.168.0.%` permits logins from the local
    # network.
    DATABASE_USER_HOST_LIST=localhost,