27 lines
756 B
YAML
27 lines
756 B
YAML
# Copyright (c) 2023 Thomas Tuerk (kontakt@thomas-tuerk.de)
|
|
#
|
|
# This file is part of PyAPplus64 (see https://www.thomas-tuerk.de/de/pyapplus64).
|
|
#
|
|
# Use of this source code is governed by an MIT-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT.
|
|
|
|
# Einstellung für die Verbindung mit dem APP-, Web- und DB-Server.
|
|
# Viele der Einstellungen sind im APplus Manager zu finden
|
|
|
|
appserver : {
|
|
server : "some-server",
|
|
port : 2037,
|
|
user : "asol.projects",
|
|
env : "default-umgebung" # hier wirklich Umgebung, nicht Mandant verwenden
|
|
}
|
|
webserver : {
|
|
baseurl : "http://some-server/APplusProd6/"
|
|
}
|
|
dbserver : {
|
|
server : "some-server",
|
|
db : "APplusProd6",
|
|
user : "SA",
|
|
password : "your-db-password"
|
|
}
|