mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Even examples/config.py with default_config
This commit is contained in:
parent
96bcd1c77d
commit
91f36acaa6
2 changed files with 10 additions and 10 deletions
|
@ -11,12 +11,12 @@
|
||||||
# used by default. If a version is missing or assigned to None, it is assumed
|
# used by default. If a version is missing or assigned to None, it is assumed
|
||||||
# not installed.
|
# not installed.
|
||||||
# ndk_paths = {
|
# ndk_paths = {
|
||||||
# 'r9b': "/opt/android-ndk-r9b",
|
# 'r9b': None,
|
||||||
# 'r10e': "/opt/android-ndk",
|
# 'r10e': "$ANDROID_NDK",
|
||||||
# }
|
# }
|
||||||
|
|
||||||
# Build tools version to be used
|
# Build tools version to be used
|
||||||
build_tools = "22.0.1"
|
build_tools = "23.0.0"
|
||||||
|
|
||||||
# Command or path to binary for running Ant
|
# Command or path to binary for running Ant
|
||||||
ant = "ant"
|
ant = "ant"
|
||||||
|
@ -214,13 +214,13 @@ carbon_port = 2003
|
||||||
build_server_always = False
|
build_server_always = False
|
||||||
|
|
||||||
# By default, fdroid will use YAML and the custom .txt metadata formats. It
|
# By default, fdroid will use YAML and the custom .txt metadata formats. It
|
||||||
# is also possible to have metadata in JSON and XML. You can enable your
|
# is also possible to have metadata in JSON and XML by adding 'json' and
|
||||||
# preferred formats by setting them in a list:
|
# 'xml'.
|
||||||
# accepted_formats = ['json', 'txt', 'xml', 'yaml']
|
# accepted_formats = ['txt', 'yaml']
|
||||||
|
|
||||||
# Limit in number of characters that fields can take up
|
# Limit in number of characters that fields can take up
|
||||||
# Only the fields listed here are supported, defaults shown
|
# Only the fields listed here are supported, defaults shown
|
||||||
char_limits = {
|
char_limits = {
|
||||||
'Summary': 50,
|
'Summary': 80,
|
||||||
'Description': 1500,
|
'Description': 4000,
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,7 +53,7 @@ default_config = {
|
||||||
'sdk_path': "$ANDROID_HOME",
|
'sdk_path': "$ANDROID_HOME",
|
||||||
'ndk_paths': {
|
'ndk_paths': {
|
||||||
'r9b': None,
|
'r9b': None,
|
||||||
'r10e': "$ANDROID_NDK"
|
'r10e': "$ANDROID_NDK",
|
||||||
},
|
},
|
||||||
'build_tools': "23.0.0",
|
'build_tools': "23.0.0",
|
||||||
'ant': "ant",
|
'ant': "ant",
|
||||||
|
@ -75,7 +75,7 @@ default_config = {
|
||||||
'smartcardoptions': [],
|
'smartcardoptions': [],
|
||||||
'char_limits': {
|
'char_limits': {
|
||||||
'Summary': 80,
|
'Summary': 80,
|
||||||
'Description': 4000
|
'Description': 4000,
|
||||||
},
|
},
|
||||||
'keyaliases': {},
|
'keyaliases': {},
|
||||||
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
|
'repo_url': "https://MyFirstFDroidRepo.org/fdroid/repo",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue