chiark / gitweb /
Merge branch '428-Signature-key-fingerprint-of-file-stats-publishsigkeys-jar-does...
[fdroidserver.git] / tests / config.py
1
2 repo_url = "https://MyFirstFDroidRepo.org/fdroid/repo"
3 repo_name = "My First F-Droid Repo Demo"
4 repo_icon = "fdroid-icon.png"
5 repo_description = """
6 This is a repository of apps to be used with F-Droid. Applications in this
7 repository are either official binaries built by the original application
8 developers, or are binaries built from source by the admin of f-droid.org
9 using the tools on https://gitlab.com/u/fdroid.
10 """
11
12 archive_older = 3
13 archive_url = "https://f-droid.org/archive"
14 archive_name = "My First F-Droid Archive Demo"
15 archive_icon = "fdroid-icon.png"
16 archive_description = """
17 The repository of older versions of applications from the main demo repository.
18 """
19
20 repo_keyalias = "sova"
21 keystore = "keystore.jks"
22 keystorepass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="
23 keypass = "r9aquRHYoI8+dYz6jKrLntQ5/NJNASFBacJh7Jv2BlI="
24 keydname = "CN=sova, OU=F-Droid"
25
26 mirrors = (
27     'https://foo.bar/fdroid',
28     'http://foobarfoobarfoobar.onion/fdroid',
29 )
30
31 update_stats = True
32 accepted_formats = ('json', 'txt', 'yml')
33
34 install_list = 'org.adaway'
35 uninstall_list = ('com.android.vending', 'com.facebook.orca', )