This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.example.js
103 lines (81 loc) · 2.07 KB
/
config.example.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
// App name.
export const APP_NAME = 'PayUTC';
// App name.
export const APP_REPO_NAME = 'simde-utc/payutc-mobile';
// iOS Store url of our app.
export const IOS_STORE_URL = '';
// Android Store url of our app.
export const ANDROID_STORE_URL = '';
// Portail url.
export const PORTAIL_URL = 'https://assos.utc.fr/';
// GitHub url.
export const GITHUB_URL = '';
// GitHub API url.
export const GITHUB_API_URL = '';
// GitHub changelogs url.
export const GITHUB_CHANGELOG_URL = '';
// Cas ticket resolution url.
export const CAS_URL = '';
// PayUTC API url.
export const PAYUTC_API_URL = '';
// PayUTC API version.
export const PAYUTC_VERSION = '';
// PayUTC refill callback url.
export const PAYUTC_CALLBACK_URL = '';
// PayUTC API key.
export const PAYUTC_KEY = '';
// PayUTC id.
export const PAYUTC_SYSTEM_ID = '';
// PayUTC email adress.
export const PAYUTC_EMAIL = '';
// Ginger api url.
export const GINGER_API_URL = '';
// Ginger API key.
export const GINGER_KEY = '';
// Main team contributors.
export const CONTRIBUTORS_MAIN_TEAM = {
NastuzziSamy: 'project_chief',
MercierCorentin: 'project_follower',
aarrtthhuurr: 'principal_developer',
pierrickdes59: 'co_conceptor',
lafondoc: 'co_conceptor',
};
// Designer contributors.
export const CONTRIBUTORS_DESIGN_TEAM = {
aarrtthhuurr: 'principal_designer',
NastuzziSamy: 'design_fixer',
};
// Translation contributors.
export const CONTRIBUTORS_TRANSLATION_TEAM = {
JulesPer: 'chinese',
};
// Old contributors of old apps.
export const CONTRIBUTORS_OLD_TEAM = {
thomasriccioli: 'ios_developer',
};
// Contributors who doesn't want to be shown in the app (by username).
export const CONTRIBUTORS_BLACKLIST = [];
export default {
APP_NAME,
APP_REPO_NAME,
IOS_STORE_URL,
ANDROID_STORE_URL,
PORTAIL_URL,
GITHUB_URL,
GITHUB_API_URL,
GITHUB_CHANGELOG_URL,
CAS_URL,
PAYUTC_API_URL,
PAYUTC_VERSION,
PAYUTC_KEY,
PAYUTC_CALLBACK_URL,
PAYUTC_SYSTEM_ID,
PAYUTC_EMAIL,
GINGER_API_URL,
GINGER_KEY,
CONTRIBUTORS_MAIN_TEAM,
CONTRIBUTORS_DESIGN_TEAM,
CONTRIBUTORS_TRANSLATION_TEAM,
CONTRIBUTORS_OLD_TEAM,
CONTRIBUTORS_BLACKLIST,
};