Initial commit

This commit is contained in:
Yaser
2026-08-13 20:22:49 +03:30
commit 94f0279983
69 changed files with 83770 additions and 0 deletions

61
app/env.js Normal file
View File

@@ -0,0 +1,61 @@
window.env = {
applogicUrl: 'http://0.0.0.0:9002/api/v2/applogic',
authUrl: 'http://0.0.0.0:9002/api/v2/barong',
peatioUrl: 'http://0.0.0.0:9002/api/v2/peatio',
finexUrl: 'http://0.0.0.0:9002/api/v2/finex',
msAlertDisplayTime: '5000',
tablePageLimit: 50,
minutesUntilAutoLogout: '5',
finex: true,
captcha: {
captchaType: 'none',
siteKey: 'siteKey',
},
labelSwitcher: [
{ name: 'email', label: [{ email: 'verified' }] },
{ name: 'phone', label: [{ phone: 'verified' }] },
{ name: 'identity', label: [{ profile: 'partial' }, { id_document: 'verified' }, { liveness: 'verified' }] },
{ name: 'residence', label: [{ document: 'verified' }] },
],
plugins: [
],
roleTypes: [
{
value: 'Admin',
key: 'admin',
},
{
value: 'Member',
key: 'member',
},
{
value: 'Super Admin',
key: 'superadmin',
},
{
value: 'Accountant',
key: 'accountant',
},
{
value: 'Compliance',
key: 'compliance',
},
{
value: 'Technical',
key: 'technical',
},
{
value: 'Support',
key: 'support',
},
{
value: 'Trader',
key: 'trader',
},
{
value: 'Broker',
key: 'broker',
},
],
withCredentials: false,
};