forked from hejny/webgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ts
995 lines (955 loc) · 23.4 KB
/
config.ts
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
import { ConfigChecker } from 'configchecker';
import { Vector } from 'xyzt';
import packageJson from './package.json';
import { FULLHD } from './src/constants';
import { AspectRatioRange } from './src/utils/aspect-ratio/AspectRatioRange';
import { expectAspectRatioInRange } from './src/utils/aspect-ratio/expectAspectRatioInRange';
import { DigitalOceanSpaces } from './src/utils/cdn/classes/DigitalOceanSpaces';
import { createColorfulComputeImageColorStats15 } from './src/utils/image/palette/15/createColorfulComputeImageColorStats15';
import { IComputeImageColorStats } from './src/utils/image/utils/IImageColorStats';
import { isRunningInBrowser } from './src/utils/isRunningInWhatever';
import { isUrlOnPrivateNetwork } from './src/utils/validators/isUrlOnPrivateNetwork';
import { validateUuid } from './src/utils/validators/validateUuid';
export const APP_VERSION = packageJson.version;
export const APP_NAME = packageJson.name;
const config = ConfigChecker.from({
...process.env,
// Note: To expose env variables to the browser, using this seemingly strange syntax:
// @see https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables#exposing-environment-variables-to-the-browser
NEXT_PUBLIC_URL: process.env.NEXT_PUBLIC_URL,
NEXT_PUBLIC_SUPABASE_URL: process.env.NEXT_PUBLIC_SUPABASE_URL,
NEXT_PUBLIC_SUPABASE_ANON_KEY: process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY,
});
export const NEXT_PUBLIC_URL = config.get('NEXT_PUBLIC_URL').url().required().value;
export const IS_DEVELOPMENT =
isUrlOnPrivateNetwork(
NEXT_PUBLIC_URL,
); /* <- TODO: Maybe pass NODE_ENV and not assume that local is automatically dev */
export const IS_PRODUCTION = !IS_DEVELOPMENT;
if (isRunningInBrowser()) {
// TODO: Also log " client ${provideClientIdWithoutValidation()}" and avoid error unhandledRejection ReferenceError: window is not defined @see https://vercel.com/hejny/1-2i/E2LhCdVbk9hjEa8dE9ww42vnkcTg
console.info(
`%c${APP_NAME}${IS_DEVELOPMENT ? ' (in development mode)' : ''} version ${APP_VERSION}`,
`background: #990055; color: white; font-size: 1.1em; font-weight: bold; padding: 5px; border-radius: 3px;`,
);
}
export const NEXT_PUBLIC_DEBUG = config.get('NEXT_PUBLIC_DEBUG').boolean().value;
/**
* The speed of the animations
* It is useful for recording videos
*
* 1 is normal, 2 is twice as fast, 0.5 is twice as slow
*
* Note: You can record video and change speef for example here:
* - https://online-video-cutter.com/change-video-speed
*/
export const SPEED = 1; // 1 / 5;
export const IS_VERIFIED_EMAIL_REQUIRED = {
CREATE: false,
EDIT: false,
LIKE: false,
PUBLISH: true,
} as const;
export const NEXT_PUBLIC_SUPABASE_URL = config.get('NEXT_PUBLIC_SUPABASE_URL').url().required().value;
export const NEXT_PUBLIC_SUPABASE_ANON_KEY = config.get('NEXT_PUBLIC_SUPABASE_ANON_KEY').required().value;
export const SUPABASE_SERVICE_ROLE_KEY = config.get('SUPABASE_SERVICE_ROLE_KEY').value;
export const VERCEL_GIT_COMMIT_MESSAGE = config.get('VERCEL_GIT_COMMIT_MESSAGE').value;
export const VERCEL_GIT_COMMIT_SHA = config.get('VERCEL_GIT_COMMIT_SHA').value;
export const LIMIT_WALLPAPERS_COUNT = config.get('LIMIT_WALLPAPERS_COUNT').number().default(Infinity).value;
export const LIMIT_WALLPAPERS_EXCLUDE = config.get('LIMIT_WALLPAPERS_EXCLUDE').list().default([]).value;
// TODO: [✍] Replace mocked-api/wallpapers-min-loved.json by WELCOME_WALLPAPERS
// export const WELCOME_WALLPAPERS = config.get('WELCOME_WALLPAPERS').list().default([]).value;
export const OPENAI_API_KEY = config.get('OPENAI_API_KEY').value;
export const AZURE_COMPUTER_VISION_ENDPOINT = config.get('AZURE_COMPUTER_VISION_ENDPOINT').url().value;
export const AZURE_COMPUTER_VISION_KEY = config.get('AZURE_COMPUTER_VISION_KEY').value;
// Note: Not using token because it is invalidated so often
export const INSTAGRAM_USERNAME = config.get('INSTAGRAM_USERNAME').value;
export const INSTAGRAM_PASSWORD = config.get('INSTAGRAM_PASSWORD').value;
export const EXPORT_OPTIONS = {
isExported: false,
publicUrl: NEXT_PUBLIC_URL,
};
export const FONTS = [
// TODO: !! [🧠] Better system for fonts
// TODO: Put in separate file
//----------[ Manually picked ]---
'Montserrat',
'Poppins',
'Open Sans',
'Lobster',
'Playfair Display',
'Great Vibes',
'Lato',
'Roboto',
'Inter',
'IBM Plex Sans',
'Exo 2',
'Orbitron',
'Dancing Script',
'Alegreya',
'Raleway',
'Futura',
'Barlow Condensed' /* <- I 💖 this font! */,
'Cabin',
'Cinzel',
'Cinzel Decorative',
'Cormorant Garamond',
//----------[ List all ]---
// @see https://github.com/honeysilvas/google-fonts
// TODO: This list is not complete (or not up to date) because for example 'Barlow Condensed' is missing
'ABeeZee',
'Abel',
'Abril Fatface',
'Aclonica',
'Acme',
'Actor',
'Adamina',
'Advent Pro',
'Aguafina Script',
'Akronim',
'Aladin',
'Aldrich',
'Alef',
'Alegreya',
'Alegreya SC',
'Alegreya Sans',
'Alegreya Sans SC',
'Alex Brush',
'Alfa Slab One',
'Alice',
'Alike',
'Alike Angular',
'Allan',
'Allerta',
'Allerta Stencil',
'Allura',
'Almendra',
'Almendra Display',
'Almendra SC',
'Amarante',
'Amaranth',
'Amatic SC',
'Amethysta',
'Amiri',
'Anaheim',
'Andada',
'Andika',
'Angkor',
'Annie Use Your Telescope',
'Anonymous Pro',
'Antic',
'Antic Didone',
'Antic Slab',
'Anton',
'Arapey',
'Arbutus',
'Arbutus Slab',
'Architects Daughter',
'Archivo Black',
'Archivo Narrow',
'Arimo',
'Arizonia',
'Armata',
'Artifika',
'Arvo',
'Asap',
'Asset',
'Astloch',
'Asul',
'Atomic Age',
'Aubrey',
'Audiowide',
'Autour One',
'Average',
'Average Sans',
'Averia Gruesa Libre',
'Averia Libre',
'Averia Sans Libre',
'Averia Serif Libre',
'Bad Script',
'Balthazar',
'Bangers',
'Basic',
'Battambang',
'Baumans',
'Bayon',
'Belgrano',
'Belleza',
'BenchNine',
'Bentham',
'Berkshire Swash',
'Bevan',
'Bigelow Rules',
'Bigshot One',
'Bilbo',
'Bilbo Swash Caps',
'Biryani',
'Bitter',
'Black Ops One',
'Bokor',
'Bonbon',
'Boogaloo',
'Bowlby One',
'Bowlby One SC',
'Brawler',
'Bree Serif',
'Bubblegum Sans',
'Bubbler One',
'Buda',
'Buenard',
'Butcherman',
'Butterfly Kids',
'Cabin',
'Cabin Condensed',
'Cabin Sketch',
'Caesar Dressing',
'Cagliostro',
'Calligraffitti',
'Cambay',
'Cambo',
'Candal',
'Cantarell',
'Cantata One',
'Cantora One',
'Capriola',
'Cardo',
'Carme',
'Carrois Gothic',
'Carrois Gothic SC',
'Carter One',
'Caudex',
'Cedarville Cursive',
'Ceviche One',
'Changa One',
'Chango',
'Chau Philomene One',
'Chela One',
'Chelsea Market',
'Chenla',
'Cherry Cream Soda',
'Cherry Swash',
'Chewy',
'Chicle',
'Chivo',
'Cinzel',
'Cinzel Decorative',
'Clicker Script',
'Coda',
'Coda Caption',
'Codystar',
'Combo',
'Comfortaa',
'Coming Soon',
'Concert One',
'Condiment',
'Content',
'Contrail One',
'Convergence',
'Cookie',
'Copse',
'Corben',
'Courgette',
'Cousine',
'Coustard',
'Covered By Your Grace',
'Crafty Girls',
'Creepster',
'Crete Round',
'Crimson Text',
'Croissant One',
'Crushed',
'Cuprum',
'Cutive',
'Cutive Mono',
'Damion',
'Dancing Script',
'Dangrek',
'Dawning of a New Day',
'Days One',
'Dekko',
'Delius',
'Delius Swash Caps',
'Delius Unicase',
'Della Respira',
'Denk One',
'Devonshire',
'Dhurjati',
'Didact Gothic',
'Diplomata',
'Diplomata SC',
'Domine',
'Donegal One',
'Doppio One',
'Dorsa',
'Dosis',
'Dr Sugiyama',
'Droid Sans',
'Droid Sans Mono',
'Droid Serif',
'Duru Sans',
'Dynalight',
'EB Garamond',
'Eagle Lake',
'Eater',
'Economica',
'Ek Mukta',
'Electrolize',
'Elsie',
'Elsie Swash Caps',
'Emblema One',
'Emilys Candy',
'Engagement',
'Englebert',
'Enriqueta',
'Erica One',
'Esteban',
'Euphoria Script',
'Ewert',
'Exo',
'Exo 2',
'Expletus Sans',
'Fanwood Text',
'Fascinate',
'Fascinate Inline',
'Faster One',
'Fasthand',
'Fauna One',
'Federant',
'Federo',
'Felipa',
'Fenix',
'Finger Paint',
'Fira Mono',
'Fira Sans',
'Fjalla One',
'Fjord One',
'Flamenco',
'Flavors',
'Fondamento',
'Fontdiner Swanky',
'Forum',
'Francois One',
'Freckle Face',
'Fredericka the Great',
'Fredoka One',
'Freehand',
'Fresca',
'Frijole',
'Fruktur',
'Fugaz One',
'GFS Didot',
'GFS Neohellenic',
'Gabriela',
'Gafata',
'Galdeano',
'Galindo',
'Gentium Basic',
'Gentium Book Basic',
'Geo',
'Geostar',
'Geostar Fill',
'Germania One',
'Gidugu',
'Gilda Display',
'Give You Glory',
'Glass Antiqua',
'Glegoo',
'Gloria Hallelujah',
'Goblin One',
'Gochi Hand',
'Gorditas',
'Goudy Bookletter 1911',
'Graduate',
'Grand Hotel',
'Gravitas One',
'Great Vibes',
'Griffy',
'Gruppo',
'Gudea',
'Gurajada',
'Habibi',
'Halant',
'Hammersmith One',
'Hanalei',
'Hanalei Fill',
'Handlee',
'Hanuman',
'Happy Monkey',
'Headland One',
'Henny Penny',
'Herr Von Muellerhoff',
'Hind',
'Holtwood One SC',
'Homemade Apple',
'Homenaje',
'IM Fell DW Pica',
'IM Fell DW Pica SC',
'IM Fell Double Pica',
'IM Fell Double Pica SC',
'IM Fell English',
'IM Fell English SC',
'IM Fell French Canon',
'IM Fell French Canon SC',
'IM Fell Great Primer',
'IM Fell Great Primer SC',
'Iceberg',
'Iceland',
'Imprima',
'Inconsolata',
'Inder',
'Indie Flower',
'Inika',
'Irish Grover',
'Istok Web',
'Italiana',
'Italianno',
'Jacques Francois',
'Jacques Francois Shadow',
'Jaldi',
'Jim Nightshade',
'Jockey One',
'Jolly Lodger',
'Josefin Sans',
'Josefin Slab',
'Joti One',
'Judson',
'Julee',
'Julius Sans One',
'Junge',
'Jura',
'Just Another Hand',
'Just Me Again Down Here',
'Kalam',
'Kameron',
'Kantumruy',
'Karla',
'Karma',
'Kaushan Script',
'Kavoon',
'Kdam Thmor',
'Keania One',
'Kelly Slab',
'Kenia',
'Khand',
'Khmer',
'Khula',
'Kite One',
'Knewave',
'Kotta One',
'Koulen',
'Kranky',
'Kreon',
'Kristi',
'Krona One',
'La Belle Aurore',
'Laila',
'Lakki Reddy',
'Lancelot',
'Lateef',
'Lato',
'League Script',
'Leckerli One',
'Ledger',
'Lekton',
'Lemon',
'Libre Baskerville',
'Life Savers',
'Lilita One',
'Lily Script One',
'Limelight',
'Linden Hill',
'Lobster',
'Lobster Two',
'Londrina Outline',
'Londrina Shadow',
'Londrina Sketch',
'Londrina Solid',
'Lora',
'Love Ya Like A Sister',
'Loved by the King',
'Lovers Quarrel',
'Luckiest Guy',
'Lusitana',
'Lustria',
'Macondo',
'Macondo Swash Caps',
'Magra',
'Maiden Orange',
'Mako',
'Mallanna',
'Mandali',
'Marcellus',
'Marcellus SC',
'Marck Script',
'Margarine',
'Marko One',
'Marmelad',
'Martel',
'Martel Sans',
'Marvel',
'Mate',
'Mate SC',
'Maven Pro',
'McLaren',
'Meddon',
'MedievalSharp',
'Medula One',
'Megrim',
'Meie Script',
'Merienda',
'Merienda One',
'Merriweather',
'Merriweather Sans',
'Metal',
'Metal Mania',
'Metamorphous',
'Metrophobic',
'Michroma',
'Milonga',
'Miltonian',
'Miltonian Tattoo',
'Miniver',
'Miss Fajardose',
'Modak',
'Modern Antiqua',
'Molengo',
'Molle',
'Monda',
'Monofett',
'Monoton',
'Monsieur La Doulaise',
'Montaga',
'Montez',
'Montserrat',
'Montserrat Alternates',
'Montserrat Subrayada',
'Moul',
'Moulpali',
'Mountains of Christmas',
'Mouse Memoirs',
'Mr Bedfort',
'Mr Dafoe',
'Mr De Haviland',
'Mrs Saint Delafield',
'Mrs Sheppards',
'Muli',
'Mystery Quest',
'NTR',
'Neucha',
'Neuton',
'New Rocker',
'News Cycle',
'Niconne',
'Nixie One',
'Nobile',
'Nokora',
'Norican',
'Nosifer',
'Nothing You Could Do',
'Noticia Text',
'Noto Sans',
'Noto Serif',
'Nova Cut',
'Nova Flat',
'Nova Mono',
'Nova Oval',
'Nova Round',
'Nova Script',
'Nova Slim',
'Nova Square',
'Numans',
'Nunito',
'Odor Mean Chey',
'Offside',
'Old Standard TT',
'Oldenburg',
'Oleo Script',
'Oleo Script Swash Caps',
'Open Sans',
'Open Sans Condensed',
'Oranienbaum',
'Orbitron',
'Oregano',
'Orienta',
'Original Surfer',
'Oswald',
'Over the Rainbow',
'Overlock',
'Overlock SC',
'Ovo',
'Oxygen',
'Oxygen Mono',
'PT Mono',
'PT Sans',
'PT Sans Caption',
'PT Sans Narrow',
'PT Serif',
'PT Serif Caption',
'Pacifico',
'Palanquin',
'Palanquin Dark',
'Paprika',
'Parisienne',
'Passero One',
'Passion One',
'Pathway Gothic One',
'Patrick Hand',
'Patrick Hand SC',
'Patua One',
'Paytone One',
'Peddana',
'Peralta',
'Permanent Marker',
'Petit Formal Script',
'Petrona',
'Philosopher',
'Piedra',
'Pinyon Script',
'Pirata One',
'Plaster',
'Play',
'Playball',
'Playfair Display',
'Playfair Display SC',
'Podkova',
'Poiret One',
'Poller One',
'Poly',
'Pompiere',
'Pontano Sans',
'Port Lligat Sans',
'Port Lligat Slab',
'Pragati Narrow',
'Prata',
'Preahvihear',
'Press Start 2P',
'Princess Sofia',
'Prociono',
'Prosto One',
'Puritan',
'Purple Purse',
'Quando',
'Quantico',
'Quattrocento',
'Quattrocento Sans',
'Questrial',
'Quicksand',
'Quintessential',
'Qwigley',
'Racing Sans One',
'Radley',
'Rajdhani',
'Raleway',
'Raleway Dots',
'Ramabhadra',
'Ramaraja',
'Rambla',
'Rammetto One',
'Ranchers',
'Rancho',
'Ranga',
'Rationale',
'Ravi Prakash',
'Redressed',
'Reenie Beanie',
'Revalia',
'Ribeye',
'Ribeye Marrow',
'Righteous',
'Risque',
'Roboto',
'Roboto Condensed',
'Roboto Slab',
'Rochester',
'Rock Salt',
'Rokkitt',
'Romanesco',
'Ropa Sans',
'Rosario',
'Rosarivo',
'Rouge Script',
'Rozha One',
'Rubik Mono One',
'Rubik One',
'Ruda',
'Rufina',
'Ruge Boogie',
'Ruluko',
'Rum Raisin',
'Ruslan Display',
'Russo One',
'Ruthie',
'Rye',
'Sacramento',
'Sail',
'Salsa',
'Sanchez',
'Sancreek',
'Sansita One',
'Sarina',
'Sarpanch',
'Satisfy',
'Scada',
'Scheherazade',
'Schoolbell',
'Seaweed Script',
'Sevillana',
'Seymour One',
'Shadows Into Light',
'Shadows Into Light Two',
'Shanti',
'Share',
'Share Tech',
'Share Tech Mono',
'Shojumaru',
'Short Stack',
'Siemreap',
'Sigmar One',
'Signika',
'Signika Negative',
'Simonetta',
'Sintony',
'Sirin Stencil',
'Six Caps',
'Skranji',
'Slabo 13px',
'Slabo 27px',
'Slackey',
'Smokum',
'Smythe',
'Sniglet',
'Snippet',
'Snowburst One',
'Sofadi One',
'Sofia',
'Sonsie One',
'Sorts Mill Goudy',
'Source Code Pro',
'Source Sans Pro',
'Source Serif Pro',
'Special Elite',
'Spicy Rice',
'Spinnaker',
'Spirax',
'Squada One',
'Sree Krushnadevaraya',
'Stalemate',
'Stalinist One',
'Stardos Stencil',
'Stint Ultra Condensed',
'Stint Ultra Expanded',
'Stoke',
'Strait',
'Sue Ellen Francisco',
'Sunshiney',
'Supermercado One',
'Suranna',
'Suravaram',
'Suwannaphum',
'Swanky and Moo Moo',
'Syncopate',
'Tangerine',
'Taprom',
'Tauri',
'Teko',
'Telex',
'Tenali Ramakrishna',
'Tenor Sans',
'Text Me One',
'The Girl Next Door',
'Tienne',
'Timmana',
'Tinos',
'Titan One',
'Titillium Web',
'Trade Winds',
'Trocchi',
'Trochut',
'Trykker',
'Tulpen One',
'Ubuntu',
'Ubuntu Condensed',
'Ubuntu Mono',
'Ultra',
'Uncial Antiqua',
'Underdog',
'Unica One',
'UnifrakturCook',
'UnifrakturMaguntia',
'Unkempt',
'Unlock',
'Unna',
'VT323',
'Vampiro One',
'Varela',
'Varela Round',
'Vast Shadow',
'Vesper Libre',
'Vibur',
'Vidaloka',
'Viga',
'Voces',
'Volkhov',
'Vollkorn',
'Voltaire',
'Waiting for the Sunrise',
'Wallpoet',
'Walter Turncoat',
'Warnes',
'Wellfleet',
'Wendy One',
'Wire One',
'Yanone Kaffeesatz',
'Yellowtail',
'Yeseva One',
'Yesteryear',
'Zeyada',
] as const;
export const COPILOT_PLACEHOLDERS: Array<string> = [
// Note: ⏣ Describe the change>
'Translate to Chinese',
'Translate to English',
'Translate to French',
'Translate to German',
'Translate to Italian',
'Translate to Japanese',
'Translate to Korean',
'Translate to Portuguese',
'Translate to Ukrainian',
'Add email contact [email protected]',
'Add phone contact +420 123 456 789',
'Add a link to website www.pavolhejny.com',
'Change opening hours on friday to 10:00-12:00',
`We are temporarily closed due to vacation till tomorrow`,
`Make better claim`,
`Make better title`,
`Shorten text about the company`,
`Add new product - 3D printer`,
`Delete the product - 3D printer`,
'Change phone number to +007 123 456 789',
'Make the text more friendly',
'Make the text more formal',
'Make the text more funny',
'Make the text more serious',
'Make the text more professional',
'Make the text more personal',
'Make the text more technical',
'Make the text more simple',
'Add a new paragraph - "We are the best"',
'Add a new paragraph - "We are the cheapest"',
'Add a new paragraph - "We are the fastest"',
'Add a new paragraph - "We are the most reliable"',
'Add bullet points why we are the best',
'Add pricing table',
];
export const INSTAGRAM_PLACEHOLDERS: Array<string> = ['_1_2i_', 'pavolhejny', 'michelangelato.zmrzlinarna'].flatMap(
(username) => [username, `@${username}`, `https://www.instagram.com/${username}/`],
);
export const MAX_CHARS_IN_TITLE = 'Futuristic Cityscape Wallpaper'.length - 7;
// 'Tvořím něco z ničeho nic'
// 'Futuristic Cityscape Wallpaper'
/**
* Maximum size of custom wallpaper image
* This will be checked on both client and server
* If user uploads bigger image, it will be resized
*/
export const WALLPAPER_IMAGE_MAX_ALLOWED_SIZE = FULLHD; // <- TODO: When image for Azure content analysis will be separated from image to upload, allow to have UHD4K images
/**
* Allowed aspect ratio of custom wallpaper image
* This will be checked on client (+ in future on server) and wont be allowed to upload image if not in this range
*/
export const WALLPAPER_IMAGE_ASPECT_RATIO_ALLOWED_RANGE: AspectRatioRange = [new Vector(3, 1), new Vector(1, 3)];
// Note: Checking validity of the WALLPAPER_IMAGE_ASPECT_RATIO config
expectAspectRatioInRange('[1]', WALLPAPER_IMAGE_ASPECT_RATIO_ALLOWED_RANGE, FULLHD);
/**
* @@@
*/
export const COLORSTATS_COMPUTE_METHODS: Array<IComputeImageColorStats<string>> = [
/*/
// Full:
createColorfulComputeImageColorStats15({
colorBits: 256,
size: FULLHD,
}),
/**/
createColorfulComputeImageColorStats15({
colorBits: 16,
size: FULLHD.scale(0.1),
}),
/*
TODO: There is an infinite loop with "Error: Size must have positive integer values, got 19.2x10.8" when using this:
Fix it:
> createColorfulComputeImageColorStats15({
> colorBits: 16,
> size: FULLHD.scale(0.01),
> }),
*/
createColorfulComputeImageColorStats15({
colorBits: 16,
size: FULLHD.scale(0.2),
}),
/*
TODO: !! Add more versions (Also full)
*/
createColorfulComputeImageColorStats15({
colorBits: 16,
size: FULLHD,
}),
/*
createColorfulComputeImageColorStats13({
colorBits: 16,
size: FULLHD.scale(0.1),
}),
createColorfulComputeImageColorStats13({
colorBits: 16,
size: FULLHD,
}),
*/
// TODO: More with createColorfulComputeImageColorStats
// TODO: More with different strategy than createColorfulComputeImageColorStats
];
export const COLORSTATS_DEFAULT_COMPUTE_IN_SCRIPT: IComputeImageColorStats<string> = COLORSTATS_COMPUTE_METHODS[0]!;
export const COLORSTATS_DEFAULT_COMPUTE_IN_FRONTEND: IComputeImageColorStats<string> = COLORSTATS_COMPUTE_METHODS[0]!;
// TODO: [🧠] Pass theese as a parameter to the function createComputeImageColorStats
export const COLORS_LIMIT = 10;
export const MOST_SATULIGHTED_COLORS_SATULIGHTION_THEASHOLD_RATIO = 0.5;
/**
* How much the color should be different (in hue) to be considered different
* As degrees of hue
*/
export const DIFFERENT_COLOR_HUE_THEASHOLD_DEGREES = 30;
/**
* How much the color should be different to be considered different
* As ratio of distance between white and black
*/
export const DIFFERENT_COLOR_DISTANCE_THEASHOLD_RATIO = 0.1; /* <- As a ratio of distance between white and black */
/**
* How much the color should be different to be considered OK as text color on background
* As ratio of distance between white and black
*/
export const TEXT_BACKGROUND_COLOR_DISTANCE_THEASHOLD_RATIO = 0.5; /* <- As a ratio of distance between white and black */
/**
* How much can be primary (background) color different from average color to be considered OK
* As ratio of distance between white and black
*/
export const PRIMARY_TO_AVERAGE_MAX_COLOR_DISTANCE_THEASHOLD_RATIO = 0.1; /* <- As a ratio of distance between white and black */
export const SYSTEM_AUTHOR_ID = validateUuid('000d2940-4a35-4859-83a8-3c754ea5df51');
// TODO: [🧠] How to do required only on server
export const CDN_BUCKET = config.get('CDN_BUCKET') /*.required([📐])*/.value;
export const CDN_PATH_PREFIX = config.get('CDN_PATH_PREFIX') /*.required([📐])*/.value;
export const CDN_ENDPOINT = config.get('CDN_ENDPOINT') /*.required([📐])*/.value;
export const CDN_ACCESS_KEY_ID = config.get('CDN_ACCESS_KEY_ID') /*.required([📐])*/.value;
export const CDN_SECRET_ACCESS_KEY = config.get('CDN_SECRET_ACCESS_KEY') /*.required([📐])*/.value;
export const CDN_PUBLIC_URL = config.get('CDN_PUBLIC_URL').url() /*.required([📐])*/.value;
export const CDN = (CDN_BUCKET &&
// [📐]
new DigitalOceanSpaces({
bucket: CDN_BUCKET!,
pathPrefix: CDN_PATH_PREFIX!,
endpoint: CDN_ENDPOINT!,
accessKeyId: CDN_ACCESS_KEY_ID!,
secretAccessKey: CDN_SECRET_ACCESS_KEY!,
cdnPublicUrl: CDN_PUBLIC_URL!,
gzip: false /* <- TODO: Maybe just remove this functionality from 1-2i repository */,
})) as DigitalOceanSpaces;
export const MIDJOURNEY_WHOLE_GALLERY_PATH = 'X:/Mythings/MidJourney';