forked from lak7/devildev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLimits.ts
More file actions
28 lines (21 loc) · 732 Bytes
/
Limits.ts
File metadata and controls
28 lines (21 loc) · 732 Bytes
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
// PROJECT FREE
export const maxNumberOfProjectsFree = 5;
export const maxProjectSizeFree = 25000;
// PROJECT PRO
export const maxNumberOfProjectsPro = 50;
export const maxProjectSizePro = 100000;
// REGENERATE ARCHITECTURE FREE
export const maxFilesChangedFree = 50;
export const maxLinesChangedFree = 5000;
export const maxFreeArchitectureRegenerations = 5;
// REGENERATE ARCHITECTURE PRO
export const maxFilesChangedPro = 300;
export const maxLinesChangedPro = 50000;
// CHAT FREE
export const maxChatCharactersLimitFree = 25000;
// CHAT PRO
export const maxChatCharactersLimitPro = 200000;
// CREDITS
export const minSoulsToSendMessage = 5;
export const minSoulsToGenArch = 25;
export const signUpInitialSouls = 250;